10 lines
175 B
Nix
10 lines
175 B
Nix
{ ... }:
|
|
{
|
|
users.users.phill = {
|
|
isNormalUser = true;
|
|
extraGroups = [ "wheel" "networkmanager" "video" "input" ];
|
|
};
|
|
|
|
security.sudo.wheelNeedsPassword = true;
|
|
}
|