Files
sydnix/users/hause/default.nix
2025-01-17 16:28:45 -07:00

26 lines
603 B
Nix

{
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";
};
}