mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 00:29:43 -04:00
10 lines
246 B
Nix
10 lines
246 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
users.users.bryan = {
|
|
isNormalUser = true;
|
|
extraGroups = [ "wheel" "networkmanager" "home-manager" "input" "video" "audio" "kvm" "libvirtd" "docker" ];
|
|
};
|
|
|
|
security.sudo.wheelNeedsPassword = false;
|
|
}
|