home-manager/kitty.nix

20 lines
317 B
Nix
Raw Normal View History

2024-07-09 19:58:33 +00:00
{ theme, ... }:
let
2024-09-23 17:23:30 +00:00
theme_file = if theme == "light" then "Solarized_Light" else "Solarized_Dark";
2024-07-09 19:58:33 +00:00
in
{
programs = {
kitty = {
enable = true;
2024-09-23 17:23:30 +00:00
themeFile = theme_file;
2024-07-09 19:58:33 +00:00
font = {
name = "FiraCode";
};
settings = {
tab_bar_style = "powerline";
};
};
};
}