mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 10:05:13 -05:00
19 lines
268 B
Nix
Executable file
19 lines
268 B
Nix
Executable file
{
|
|
flake,
|
|
...
|
|
}:
|
|
let
|
|
inherit (flake.config.aesthetics.themes)
|
|
fonts
|
|
;
|
|
in
|
|
{
|
|
programs.kitty = {
|
|
enable = true;
|
|
font = {
|
|
name = fonts.names.name0;
|
|
size = fonts.sizes.terminal.size0;
|
|
};
|
|
themeFile = "Catppuccin-Macchiato";
|
|
};
|
|
}
|