9 lines
273 B
Nix
9 lines
273 B
Nix
|
{ 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;});
|
||
|
}
|