Creating a new user afauroux and giving him root privileges

master
David Crompton 2025-01-27 13:41:52 -05:00
parent c3f6d922db
commit d7bd579aad
3 changed files with 13 additions and 0 deletions

View File

@ -19,6 +19,7 @@
./users/josh.nix
./users/iffat.nix
./users/jkaethee.nix
./users/afauroux.nix
# Groups
./users/groups/admin.nix

View File

@ -0,0 +1,11 @@
{ pkgs, ... }: {
users.users.afauroux = {
isNormalUser = true;
extraGroups = [ ];
homeSize = "50g";
homeProjectId = 120;
packages = with pkgs; [
];
};
}

View File

@ -4,6 +4,7 @@
"root"
"david"
"ngilab"
"afauroux"
];
};
}