diff --git a/machines/kcnhub/users.nix b/machines/kcnhub/users.nix index 777e5e9..40780a1 100644 --- a/machines/kcnhub/users.nix +++ b/machines/kcnhub/users.nix @@ -9,6 +9,7 @@ ./users/frances.nix ./users/srikar.nix ./users/zhenyangsun.nix + ./users/ngilab.nix # Groups ./users/groups/admin.nix diff --git a/machines/kcnhub/users/ngilab.nix b/machines/kcnhub/users/ngilab.nix new file mode 100644 index 0000000..f28e28e --- /dev/null +++ b/machines/kcnhub/users/ngilab.nix @@ -0,0 +1,11 @@ +{ pkgs, ... }: { + users.users.ngilab = { + isNormalUser = true; + extraGroups = [ ]; + homeSize = "50g"; + homeProjectId = 109; + packages = with pkgs; [ + + ]; + }; +}