Add Matlab Server User

master
David Crompton 2023-09-07 09:54:05 -04:00
parent 8d151a1399
commit 1b4be74d2c
2 changed files with 12 additions and 0 deletions

View File

@ -5,5 +5,6 @@
./users/carol.nix ./users/carol.nix
./users/alan.nix ./users/alan.nix
./users/spandan.nix ./users/spandan.nix
./users/matlab-server.nix
]; ];
} }

View File

@ -0,0 +1,11 @@
{ pkgs, ... }: {
users.users.matlab-server = {
isNormalUser = true;
extraGroups = [ "wheel" ];
homeSize = "15g";
homeProjectId = 105;
packages = with pkgs; [
];
};
}