WIP: Groundwork for impermanence setup for nixos and home

This commit is contained in:
2026-06-24 19:07:40 +02:00
parent 23d6b86dc1
commit a3139051b1
6 changed files with 70 additions and 2 deletions
+13
View File
@@ -0,0 +1,13 @@
{ primaryUser, ... }:
{
home.persistence."/persist/home/${primaryUser}" = {
hideMounts = true;
directories = [
".config/nix"
".local/share/zoxide"
];
files = [
".local/share/fish/fish_history"
];
};
}