2023-09-24 19:56:38 +00:00
|
|
|
{ theme, ... }:
|
2022-06-26 12:42:49 +00:00
|
|
|
|
2022-08-18 19:15:03 +00:00
|
|
|
let
|
|
|
|
theme_name = if theme == "light" then "Solarized Light" else "Solarized Dark";
|
|
|
|
in
|
2022-06-26 12:42:49 +00:00
|
|
|
{
|
|
|
|
programs = {
|
|
|
|
kitty = {
|
|
|
|
enable = true;
|
2022-08-18 19:15:03 +00:00
|
|
|
theme = theme_name;
|
2022-06-26 12:42:49 +00:00
|
|
|
font = {
|
2023-07-12 14:25:34 +00:00
|
|
|
name = "FiraCode Nerd Font Mono";
|
2022-06-26 12:42:49 +00:00
|
|
|
};
|
2022-06-29 12:50:16 +00:00
|
|
|
settings = {
|
|
|
|
tab_bar_style = "powerline";
|
|
|
|
};
|
2022-06-26 12:42:49 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|