{ pkgs , ... }: let inherit (pkgs) stdenv; in { programs.kitty = { enable = true; font = { package = pkgs.recursive; name = "Rec Mono SemiCasual"; size = 15; }; theme = "Alabaster"; shellIntegration = { mode = "enabled"; }; }; programs.fish.shellInit = '' if test -n $KITTY_INSTALLATION_DIR set -x KITTY_SHELL_INTEGRATION no-cursor end ''; }