Files
nixos-config/lib/mkUser.nix

9 lines
273 B
Nix
Raw Normal View History

2025-08-20 18:24:02 +03:00
{ lib }: {
mkUser = password: wheel: {
isNormalUser = true;
extraGroups = [ "video" "libvirtd" "lp" (if wheel then "wheel" else "") ];
} // (if (lib.hasPrefix "/" password)
then {hashedPasswordFile = password;}
else {hashedPassword = password;});
}