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