Files
nixos-config/modules/users/phill.nix
2026-02-01 00:42:40 +08:00

10 lines
175 B
Nix

{ ... }:
{
users.users.phill = {
isNormalUser = true;
extraGroups = [ "wheel" "networkmanager" "video" "input" ];
};
security.sudo.wheelNeedsPassword = true;
}