kcnhub: users: add ngilab_guest

master
David Crompton 2025-03-28 13:49:09 -04:00
parent d4f70517a1
commit 2012586243
2 changed files with 12 additions and 0 deletions

View File

@ -9,6 +9,7 @@
./users/srikar.nix
./users/zhenyangsun.nix
./users/ngilab.nix
./users/ngilab_guest.nix
./users/milad.nix
./users/nooshin.nix
./users/zoe.nix

View File

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