Added Spandan to mousetbi group

David Crompton 2023-09-01 11:16:44 -04:00
parent 13fa3166bc
commit 6c7d4c8744
1 changed files with 5 additions and 1 deletions

View File

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