From 50e96683a4f7449e2aed649b03a2a526eaf69548 Mon Sep 17 00:00:00 2001 From: Michael Mandl Date: Mon, 23 Sep 2024 19:23:30 +0200 Subject: [PATCH] chore: update kitty theme parameter --- kitty.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kitty.nix b/kitty.nix index 372d237..f1318d1 100644 --- a/kitty.nix +++ b/kitty.nix @@ -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"; };