mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 10:05:13 -05:00
19 lines
251 B
Nix
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";
|
|
};
|
|
}
|