diff --git a/machines/kcnhub/users.nix b/machines/kcnhub/users.nix index 4def359..8764494 100644 --- a/machines/kcnhub/users.nix +++ b/machines/kcnhub/users.nix @@ -10,6 +10,7 @@ ./users/zhenyangsun.nix ./users/ngilab.nix ./users/milad.nix + ./users/nooshin.nix # Groups ./users/groups/admin.nix diff --git a/machines/kcnhub/users/nooshin.nix b/machines/kcnhub/users/nooshin.nix new file mode 100644 index 0000000..5a33a89 --- /dev/null +++ b/machines/kcnhub/users/nooshin.nix @@ -0,0 +1,11 @@ +{ pkgs, ... }: { + users.users.nooshin = { + isNormalUser = true; + extraGroups = [ ]; + homeSize = "50g"; + homeProjectId = 111; + packages = with pkgs; [ + + ]; + }; +}