{ config, lib, pkgs, user, theme, ... }: let theme_name = if theme == "light" then "Solarized Light" else "Solarized Dark"; in { programs = { kitty = { enable = true; theme = theme_name; font = { name = "DejaVu Sans Mono"; }; settings = { tab_bar_style = "powerline"; }; }; }; }