diff --git a/machines/kcnhub/users.nix b/machines/kcnhub/users.nix index 7183a55..3e1b102 100644 --- a/machines/kcnhub/users.nix +++ b/machines/kcnhub/users.nix @@ -5,5 +5,6 @@ ./users/carol.nix ./users/alan.nix ./users/spandan.nix + ./users/matlab-server.nix ]; } diff --git a/machines/kcnhub/users/matlab-server.nix b/machines/kcnhub/users/matlab-server.nix new file mode 100644 index 0000000..a723ad3 --- /dev/null +++ b/machines/kcnhub/users/matlab-server.nix @@ -0,0 +1,11 @@ +{ pkgs, ... }: { + users.users.matlab-server = { + isNormalUser = true; + extraGroups = [ "wheel" ]; + homeSize = "15g"; + homeProjectId = 105; + packages = with pkgs; [ + + ]; + }; +}