Set up impermanence for home manager.

This commit is contained in:
2024-09-13 16:19:33 +01:00
parent 6e762f1821
commit 0e2537fa7d
3 changed files with 22 additions and 9 deletions

View File

@@ -17,6 +17,16 @@ in
shellAliases = {
reload-home-manager-config = "home-manager switch --flake ${builtins.toString ./.}";
};
persistence."/persist/home/ppetru" = {
directories = [
".ssh"
"projects"
];
files = [
];
allowOther = true;
};
};
programs = import ./programs.nix;