hackens-org-configurations/machines/hackens-org/_users.nix

43 lines
1.4 KiB
Nix
Raw Normal View History

2024-09-24 12:33:51 +02:00
{ ... }:
{
2023-01-12 18:11:50 +01:00
users = {
mutableUsers = false;
users = {
rlahfa = {
isNormalUser = true;
extraGroups = [ "wheel" ];
2024-09-24 12:33:51 +02:00
hashedPassword = "$6$y/I6nKCMYUku7$91vTR5kYz4nHyhbuA/j6kPsD8Vfo/Rg7ri6Ympftra9V6emOt/mPg0AScECtYjSIxretvfQ3sPUF1Ho0IWx381";
2023-12-04 17:42:06 +01:00
openssh.authorizedKeys.keyFiles = [ ../../pubkeys/raito.keys ];
2023-01-12 18:11:50 +01:00
};
gdoriathdohler = {
isNormalUser = true;
extraGroups = [ "wheel" ];
2023-12-04 17:42:06 +01:00
openssh.authorizedKeys.keyFiles = [ ../../pubkeys/gdd.keys ];
2023-01-12 18:11:50 +01:00
};
mdebray = {
isNormalUser = true;
extraGroups = [ "wheel" ];
2024-09-24 12:33:51 +02:00
hashedPassword = "$6$ujz06kXa4TgvPAbF$NaXkDuOUpf3.fBRh7JuygtS0V2U/Bz4N3DpbOznO.md44xEdlKwPH/pSbL9CQJBhI5kodaKZeSaoCyhzybBPA/";
2023-12-04 17:42:06 +01:00
openssh.authorizedKeys.keyFiles = [ ../../pubkeys/sinavir.keys ];
2023-01-12 18:11:50 +01:00
};
2024-02-20 21:38:36 +01:00
ecoppens = {
isNormalUser = true;
extraGroups = [ "wheel" ];
hashedPassword = "$2b$05$c7kIDOunRJvgncWq5pmbXupy/wzUzCvN3b/RHgl/BjlUw891wI.Oa";
openssh.authorizedKeys.keyFiles = [ ../../pubkeys/soyouzpanda.keys ];
};
2023-01-12 18:11:50 +01:00
hbarral = {
isNormalUser = true;
extraGroups = [ "wheel" ];
2023-12-04 17:42:06 +01:00
openssh.authorizedKeys.keyFiles = [ ../../pubkeys/backslash.keys ];
2023-01-12 18:11:50 +01:00
};
2023-12-04 17:42:06 +01:00
root.openssh.authorizedKeys.keyFiles = [
../../pubkeys/beigbeder.keys
../../pubkeys/sinavir.keys
2024-02-20 21:38:36 +01:00
../../pubkeys/soyouzpanda.keys
2024-10-10 20:44:54 +02:00
../../pubkeys/catvayor.keys
2023-12-04 17:42:06 +01:00
];
2021-12-14 18:36:07 +01:00
};
};
}