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

12 lines
198 B
Nix
Raw Normal View History

{ pkgs, ... }: {
users.users.david = {
isNormalUser = true;
extraGroups = [ "wheel" ];
2023-07-27 15:42:59 -04:00
homeSize = "25g";
homeProjectId = 100;
packages = with pkgs; [
2023-07-28 14:04:53 -04:00
emacs
];
};
}