fix(home-manager): capitalize gtkTheme (#159)

The uncapitalized gtkTheme made the generated theme name incorrect wich prevented
the theme to be set correctly and made the symlinks in ~/.config/gtk-4.0 broken
This commit is contained in:
celeri 2024-05-08 19:26:10 -04:00 committed by GitHub
parent eaa6e281f1
commit 360c974143
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -47,8 +47,8 @@ in
# use the light gtk theme for latte
gtkTheme =
if cfg.flavour == "latte"
then "light"
else "dark";
then "Light"
else "Dark";
in
{
name = "Catppuccin-${flavourUpper}-${sizeUpper}-${accentUpper}-${gtkTheme}";