WS-KCNHUB/machines/kcnhub/users/matlab-server.nix

12 lines
195 B
Nix

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