From 1b4be74d2c0d96b191fa9983dc13950e76b829a0 Mon Sep 17 00:00:00 2001 From: David Crompton Date: Thu, 7 Sep 2023 09:54:05 -0400 Subject: [PATCH] Add Matlab Server User --- machines/kcnhub/users.nix | 1 + machines/kcnhub/users/matlab-server.nix | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 machines/kcnhub/users/matlab-server.nix 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; [ + + ]; + }; +}