move sysAdmin settings into home.nix

This commit is contained in:
2025-08-23 01:43:06 -05:00
parent 85fd2b019b
commit fb35ed0b96
3 changed files with 29 additions and 13 deletions
+15
View File
@@ -12,6 +12,21 @@
unixtools.ping
];
# user persisted dirs
home.persistence."/persist/home/roy" = {
directories = [
".ssh"
"rp"
];
files = [
".bash_history"
".config/sops/age/keys.txt"
];
allowOther = true;
};
home.stateVersion = "24.11";
programs.home-manager.enable = true;