1
Fork 0
satellite/modules/users.nix
2020-04-08 19:36:58 +03:00

12 lines
297 B
Nix

{ ... }: {
users = {
mutableUsers = false;
users.adrielus = {
isNormalUser = true;
extraGroups = [ "wheel" "networkmanager" ];
hashedPassword =
"$6$5NX9cuUbX$yjiBbroplRLanLfJ5wNjjsd9rSvN81BCNEnuF2DUgfMa/TPYdl5PUYcWF52VxNbisDPsR2Q5EhgNrgALatpT3/";
};
};
}