nix-conf/system/modules/users.nix
2024-12-14 02:27:00 +08:00

9 lines
180 B
Nix

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