From 430223932eaf0c3b0fbd578f591fc02f6b17fd29 Mon Sep 17 00:00:00 2001 From: Skye Date: Tue, 4 Jul 2023 14:27:30 +0900 Subject: [PATCH] fix(home-manager): capitalize "Light" and "Dark" --- modules/home-manager/gtk.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/home-manager/gtk.nix b/modules/home-manager/gtk.nix index cd4f645..e697da3 100644 --- a/modules/home-manager/gtk.nix +++ b/modules/home-manager/gtk.nix @@ -24,7 +24,7 @@ in { sizeUpper = ctp.mkUpper cfg.size; # use the light gtk theme for latte - gtkTheme = if cfg.flavour == "latte" then "light" else "dark"; + gtkTheme = if cfg.flavour == "latte" then "Light" else "Dark"; in mkIf cfg.enable {