chore: update kitty theme parameter

main
mandlm 2024-09-23 19:23:30 +02:00
parent 2bbd01d2f7
commit 50e96683a4
Signed by: mandlm
GPG Key ID: 4AA25D647AA54CC7
1 changed files with 2 additions and 2 deletions

View File

@ -1,13 +1,13 @@
{ theme, ... }:
let
theme_name = if theme == "light" then "Solarized Light" else "Solarized Dark";
theme_file = if theme == "light" then "Solarized_Light" else "Solarized_Dark";
in
{
programs = {
kitty = {
enable = true;
theme = theme_name;
themeFile = theme_file;
font = {
name = "FiraCode";
};