9 lines
180 B
Nix
9 lines
180 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
users.users.danny = {
|
|
isNormalUser = true;
|
|
shell = pkgs.nushell;
|
|
extraGroups = [ "wheel" "qemu" "kvm" "libvirtd" "networkmanager" ];
|
|
};
|
|
}
|