dotfiles/home/modules/gui/apps/terminal/kitty/default.nix

20 lines
251 B
Nix
Raw Normal View History

2025-01-19 23:40:54 -06:00
{
flake,
...
}:
let
inherit (flake.config.aesthetics.themes)
font
;
in
{
programs.kitty = {
enable = true;
font = {
name = font.name;
size = font.size.terminal;
};
themeFile = "Catppuccin-Macchiato";
};
}