30 lines
717 B
Nix
30 lines
717 B
Nix
{lib, ...} :
|
|
with lib;
|
|
|
|
let
|
|
admins = {
|
|
nerf = {
|
|
hashedPassword =
|
|
"$6$rounds=424242$FaEtIXMUScxgAYyF$Fl8GbPFgiEv.1iwrhtVpTixG1BTJys3aIfLyTzocQYZV4JymrYEXtnyCTURmVDe8stxbxgDutmtlyElfn1DQc/";
|
|
keys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDGDe2GHC3ZUxwxWawLlKa3DRSHG1Cer5JL3ctc3GcRn nerf@nerflap2"
|
|
];
|
|
};
|
|
};
|
|
|
|
mkAdmin = name :
|
|
{hashedPassword, keys}: {
|
|
"${name}" = {
|
|
isNormalUser = true;
|
|
createHome = true;
|
|
extraGroups = [ "wheel" ];
|
|
group = "users";
|
|
home = "/home/${name}";
|
|
openssh.authorizedKeys = { inherit keys; };
|
|
inherit hashedPassword;
|
|
};
|
|
};
|
|
|
|
in {
|
|
users.users = mkMerge (mapAttrsToList mkAdmin admins);
|
|
}
|