nix-conf/system/modules/users.nix
2024-12-19 19:14:59 +08:00

9 lines
173 B
Nix

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