home-manager/private/kitty.nix

20 lines
313 B
Nix
Raw Normal View History

2024-07-09 19:58:33 +00:00
{ theme, ... }:
let
theme_name = if theme == "light" then "Solarized Light" else "Solarized Dark";
in
{
programs = {
kitty = {
enable = true;
theme = theme_name;
font = {
name = "FiraCode";
};
settings = {
tab_bar_style = "powerline";
};
};
};
}