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

12 lines
195 B
Nix
Raw Normal View History

2023-09-07 09:54:05 -04:00
{ pkgs, ... }: {
users.users.matlab-server = {
isNormalUser = true;
extraGroups = [ "wheel" ];
homeSize = "15g";
homeProjectId = 105;
packages = with pkgs; [
];
};
}