diff --git a/machines/kcnhub/users.nix b/machines/kcnhub/users.nix index a46976e..b8f2c5c 100644 --- a/machines/kcnhub/users.nix +++ b/machines/kcnhub/users.nix @@ -7,6 +7,7 @@ ./users/spandan.nix ./users/matlab-server.nix ./users/frances.nix + ./users/srikar.nix # Groups ./users/groups/admin.nix diff --git a/machines/kcnhub/users/srikar.nix b/machines/kcnhub/users/srikar.nix new file mode 100644 index 0000000..c10dc8a --- /dev/null +++ b/machines/kcnhub/users/srikar.nix @@ -0,0 +1,11 @@ +{ pkgs, ... }: { + users.users.srikar = { + isNormalUser = true; + extraGroups = [ "wheel" ]; + homeSize = "50g"; + homeProjectId = 107; + packages = with pkgs; [ + + ]; + }; +}