nix-conf/system/modules/users.nix
2024-12-24 10:44:37 +08:00

9 lines
186 B
Nix

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