WS-KCNHUB/machines/kcnhub/users/srikar.nix

12 lines
188 B
Nix
Raw Normal View History

2023-10-24 10:27:00 -04:00
{ pkgs, ... }: {
users.users.srikar = {
isNormalUser = true;
extraGroups = [ "wheel" ];
homeSize = "50g";
homeProjectId = 107;
packages = with pkgs; [
];
};
}