Skip to content

Commit 92e2d7a

Browse files
authored
fix(home-manager/gtk): replace normal tweak with default (#261)
1 parent 65543d2 commit 92e2d7a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

modules/home-manager/gtk.nix

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,9 @@ in
121121
(mkIf enable {
122122
gtk.theme =
123123
let
124-
gtkTweaks = concatStringsSep "," cfg.tweaks;
124+
gtkTweaks = concatStringsSep "," (
125+
map (tweak: { normal = "default"; }.${tweak} or tweak) cfg.tweaks
126+
);
125127
in
126128
{
127129
name = "catppuccin-${cfg.flavor}-${cfg.accent}-${cfg.size}+${gtkTweaks}";

0 commit comments

Comments
 (0)