{ pkgs, config, ... }: let theme = config.theme; in { programs.kitty = { enable = true; settings = { term = "xterm"; enable_audio_bell = false; scrollback_lines = 5000000; background = theme.background.basic; }; font = { name = "Fira Code"; size = 8; }; }; }