feat: add new host homelab

This commit is contained in:
tux
2025-01-05 02:15:53 +05:30
parent 625ef7468e
commit 807f8ab442
5 changed files with 226 additions and 0 deletions

16
hosts/homelab/home.nix Normal file
View File

@ -0,0 +1,16 @@
{username, ...}: {
home.persistence."/persist/home/${username}" = {
directories = [
"Projects"
"Stuff"
".ssh"
];
files = [
".zsh_history"
".zcompdump"
];
allowOther = true;
};
home.stateVersion = "24.11";
}