Add Frances

David Crompton 2023-10-19 09:55:17 -04:00
parent f708baaf85
commit 9dd2a2f26e
2 changed files with 17 additions and 0 deletions

View File

@ -6,5 +6,6 @@
./users/alan.nix ./users/alan.nix
./users/spandan.nix ./users/spandan.nix
./users/matlab-server.nix ./users/matlab-server.nix
./users/frances.nix
]; ];
} }

View File

@ -0,0 +1,16 @@
{ pkgs, ... }: {
users.users.frances = {
isNormalUser = true;
extraGroups = [
"wheel"
"mousetbi"
];
homeSize = "50g";
homeProjectId = 106;
packages = with pkgs; [
];
initialHashedPassword = "$y$j9T$I9LtX8Vx/2RKuUT1HjPKN/$TmoQPB/J7y3owZf80oWZjLPv//CVeUd8gVttcFeINQA";
};
users.groups."mousetbi" = { };
}