{ pkgs, config, lib, ... }: { config = lib.mkIf config.programs.kitty.enable { programs.kitty = { font = { name = "JetBrains Mono"; size = 9.5; }; shellIntegration.enableZshIntegration = true; settings = { background_opacity = 1; enable_audio_bell = "no"; visual_bell_duration = "0.025"; window_padding_width = 0; }; theme = "Catppuccin-Mocha"; }; }; }