Major rework in progress

This commit is contained in:
2024-10-10 11:01:59 -05:00
parent 35d920744f
commit f11a6ab86e
26 changed files with 742 additions and 253 deletions

View File

@@ -0,0 +1,28 @@
{ config, lib, self, ... }: {
imports = [
self.inputs.impermanence.nixosModules.home-manager.impermanence
];
config = lib.mkIf config.disko.impermanent {
home.persistence."/persist/home" = {
directories = [
"Documents"
"Music"
"Pictures"
"Videos"
".ssh"
".config"
".local"
];
files = [
".cache/bg"
".cache/bga"
];
allowOther = true;
};
};
}