Files
sydnix/users/lain/default.nix
Madeleine Sydney 3616248c20 fix: Git-annex fixes
2025-01-25 04:29:47 -07:00

33 lines
751 B
Nix
Executable File

{
systemConfiguration = { config, ... }: {
isNormalUser = true;
# TODO: Don't hard-code `persist`. Use
# config.sydnix.impermanence.persistGroupName.
extraGroups = [ "wheel" "persist" "nginx" "annex" ];
initialHashedPassword =
"$y$j9T$aEFDDwdTZbAc6VQRXrkBJ0$K8wxTGTWDihyX1wxJ.ZMH//wmQFfrGGUkLkxIU0Lyq8";
openssh.authorizedKeys.keyFiles = [
../../public-keys/crumb-at-guix-rebound.pub
../../public-keys/crumble-at-fruitbook.pub
];
};
homeConfiguration = { config, lib, pkgs, ... }: {
imports = [
];
sydnix = {
impermanence = {
enable = true;
directories = [
".ssh"
];
};
};
# Don't touch!
home.stateVersion = "18.09";
};
}