nixos/lib/user.nix

20 lines
354 B
Nix
Raw Normal View History

2021-10-13 13:29:07 +01:00
{ pkgs, ...}:
{
mkUser = name: {
fileSystems."/home/${name}/Downloads" = {
device = "tmpfs";
fsType = "tmpfs";
options = ["size=3G"];
};
users.users.${name} = {
isNormalUser = true;
shell = pkgs.zsh;
extraGroups = [ "wheel" ];
};
home-manager.users.${name}.imports = [ ../roles/home ];
};
}