nix-conf/system/modules/users.nix
2025-01-01 14:53:27 +08:00

9 lines
197 B
Nix

{ config, pkgs, ... }:
{
users.users.danny = {
isNormalUser = true;
shell = pkgs.bash; # Actually fish
extraGroups = [ "wheel" "input" "networkmanager" "docker" "libvirtd" ];
};
}