1
Fork 0
satellite/modules/users.nix
2020-04-10 14:51:37 +03:00

13 lines
222 B
Nix

{ ... }:
with import ../secrets.nix; {
users = {
mutableUsers = false;
users.adrielus = {
inherit hashedPassword;
extraGroups = [ "wheel" "networkmanager" ];
isNormalUser = true;
};
};
}