WS-KCNHUB/machines/kcnhub/users/spandan.nix

16 lines
250 B
Nix
Raw Normal View History

2023-09-01 11:04:20 -04:00
{ pkgs, ... }: {
users.users.spandan = {
isNormalUser = true;
2023-09-01 11:16:44 -04:00
extraGroups = [
"wheel"
"mousetbi"
];
2023-09-01 11:04:20 -04:00
homeSize = "50g";
homeProjectId = 104;
packages = with pkgs; [
];
};
2023-09-01 11:16:44 -04:00
users.groups."mousetbi" = { };
2023-09-01 11:04:20 -04:00
}