Add Spandan

master
David Crompton 2023-09-01 11:04:20 -04:00
parent 0d9b9ec9ef
commit c8c17f230a
2 changed files with 12 additions and 0 deletions

View File

@ -4,5 +4,6 @@
./users/darian.nix ./users/darian.nix
./users/carol.nix ./users/carol.nix
./users/alan.nix ./users/alan.nix
./users/spandan.nix
]; ];
} }

View File

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