dotfiles/home/modules/gui/apps/terminal/kitty/default.nix
2025-01-19 23:40:54 -06:00

19 lines
251 B
Nix

{
flake,
...
}:
let
inherit (flake.config.aesthetics.themes)
font
;
in
{
programs.kitty = {
enable = true;
font = {
name = font.name;
size = font.size.terminal;
};
themeFile = "Catppuccin-Macchiato";
};
}