wip: feat: Add deertopia.net host

This commit is contained in:
Madeleine Sydney
2025-01-17 12:59:39 -07:00
parent dc481e125f
commit c3cecf6a1c
3 changed files with 186 additions and 0 deletions

25
users/hause/default.nix Normal file
View File

@@ -0,0 +1,25 @@
{
systemConfiguration = { config, ... }: {
isNormalUser = true;
# TODO: Don't hard-code `persist`. Use
# config.sydnix.impermanence.persistGroupName.
extraGroups = [ "wheel" "persist" ];
initialHashedPassword =
"$y$j9T$aEFDDwdTZbAc6VQRXrkBJ0$K8wxTGTWDihyX1wxJ.ZMH//wmQFfrGGUkLkxIU0Lyq8";
};
homeConfiguration = { config, lib, pkgs, ... }: {
imports = [
];
sydnix = {
sops = {
# enable = true;
keyFile = "/persist/vault/${config.home.username}/keys/primary";
};
};
# Don't touch!
home.stateVersion = "18.09";
};
}