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

12 lines
198 B
Nix

{ pkgs, ... }: {
users.users.david = {
isNormalUser = true;
extraGroups = [ "wheel" ];
homeSize = "50g";
homeProjectId = 100;
packages = with pkgs; [
emacs
];
};
}