mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-12-08 13:59:24 -06:00
20 lines
255 B
Nix
20 lines
255 B
Nix
|
|
{
|
||
|
|
flake,
|
||
|
|
...
|
||
|
|
}:
|
||
|
|
let
|
||
|
|
inherit (flake.config.aesthetics.themes)
|
||
|
|
fonts
|
||
|
|
;
|
||
|
|
in
|
||
|
|
{
|
||
|
|
programs.kitty = {
|
||
|
|
enable = true;
|
||
|
|
font = {
|
||
|
|
name = fonts.name;
|
||
|
|
size = fonts.sizes.terminal;
|
||
|
|
};
|
||
|
|
themeFile = "Catppuccin-Macchiato";
|
||
|
|
};
|
||
|
|
}
|