{config, pkgs, ...}: { imports = [ ./zsh.nix ]; # Define user account and dont forget to set a password with 'passwd' users.users.cerberus = { isNormalUser = true; description = "cerberus"; extraGroups = [ "networkmanager" "wheel" ]; shell = pkgs.zsh; }; }