nixos-config/home-manager/kitty.nix

20 lines
313 B
Nix
Raw Normal View History

2023-09-24 19:56:38 +00:00
{ theme, ... }:
2022-08-18 19:15:03 +00:00
let
theme_name = if theme == "light" then "Solarized Light" else "Solarized Dark";
in
{
programs = {
kitty = {
enable = true;
2022-08-18 19:15:03 +00:00
theme = theme_name;
font = {
name = "FiraCode";
};
settings = {
tab_bar_style = "powerline";
};
};
};
}