summaryrefslogtreecommitdiff
path: root/users.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users.nix')
-rw-r--r--users.nix12
1 files changed, 1 insertions, 11 deletions
diff --git a/users.nix b/users.nix
index 1d78a87..8654bc1 100644
--- a/users.nix
+++ b/users.nix
@@ -36,7 +36,7 @@ in {
];
};
};
- environment.persistence."/nix/persist".users = lib.mkIf config.environment.persistence."/nix/persist".enable (
+ environment.persistence."/persist".users = lib.mkIf config.environment.persistence."/persist".enable (
builtins.mapAttrs
(name: value: lib.mkIf (builtins.elem name machine.users) value)
{
@@ -56,16 +56,6 @@ in {
".brush_history"
];
};
- "mtgmonkey" = {
- directories = [
- ".local/share/zoxide"
- ".ssh"
- ];
- files = [
- ".bash_history"
- ".brush_history"
- ];
- };
}
);
}