{ flake.modules = { homeManager.cholli = { pkgs, ... }: { catppuccin.kitty.enable = true; home.packages = [ pkgs.kitty pkgs.xfce.thunar ]; home.sessionVariables.TERMINAL = "kitty"; home.file.".config/Thunar/uca.xml".text = '' kitty Open Kitty here 1726095927116900-1 ${pkgs.kitty}/bin/kitty %f Example for a custom action * ''; programs.kitty = { enable = true; # themeFile = "tokyo_night_night"; font = { name = "FiraCode Nerd Font"; size = 15; }; shellIntegration.enableFishIntegration = true; settings = { "background_opacity" = "0.90"; "shell" = "fish"; "confirm_os_window_close" = "0"; }; }; }; }; }