homelab/modules/common/users.nix
2025-08-06 00:18:58 +02:00

16 lines
395 B
Nix

{ ... }:
{
users = {
mutableUsers = false;
users.lzebulon = {
isNormalUser = true;
hashedPassword = "$y$j9T$l3Sr.4rBoWPTNx9AQNd6n0$rHprSWYdDIv0sjrMz1/47fZSboNL95/v43HZCbsuSM3";
extraGroups = [ "wheel" ];
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKCR6uatrqbCViftPwQ17JNVN8KBC02sPAOu+uRKGhLR lzebulon"
];
};
};
}