Add Matlab Server User

David Crompton 2023-09-07 09:54:05 -04:00
parent 6c7d4c8744
commit b14750a99e
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; [
];
};
}