Add Frances

master
David Crompton 2023-10-19 09:55:17 -04:00
parent 0f33cdb0db
commit 312e002f9a
2 changed files with 17 additions and 0 deletions

View File

@ -6,5 +6,6 @@
./users/alan.nix
./users/spandan.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" = { };
}