{ pkgs, ... }: { programs.zsh.enable = true; users = { defaultUserShell = pkgs.zsh; users.chest = { isNormalUser = true; description = "Chest"; extraGroups = [ "networkmanager" "wheel" "input" "libvirtd" ]; packages = with pkgs; []; }; }; services.getty.autologinUser = "chest"; }