{ pkgs, ... }: { # Define a user account. Don't forget to set a password with `passwd`. users.users.asonix = { isNormalUser = true; description = "Aode"; shell = pkgs.zsh; extraGroups = [ "networkmanager" "wheel" ]; packages = with pkgs; [ firefox ]; }; users.defaultUserShell = pkgs.zsh; }