Skip to content

Commit

Permalink
chore(gtk): update to PR version
Browse files Browse the repository at this point in the history
Co-authored-by: Fedi Jamoussi <[email protected]>
  • Loading branch information
isabelroses and eljamm authored Jul 3, 2024
1 parent 335333f commit d552a1b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/home-manager/gtk.nix
Original file line number Diff line number Diff line change
Expand Up @@ -122,10 +122,10 @@ in
(mkIf enable {
gtk.theme =
let
gtkTweaks = if cfg.tweaks == [ ] then "default" else (concatStringsSep "," cfg.tweaks);
gtkTweaks = if cfg.tweaks == [ ] then "" else (concatStrings [ "+" (concatStringsSep "," cfg.tweaks) ]);
in
{
name = "catppuccin-${cfg.flavor}-${cfg.accent}-${cfg.size}+${gtkTweaks}";
name = "catppuccin-${cfg.flavor}-${cfg.accent}-${cfg.size}${gtkTweaks}";
package = pkgs.catppuccin-gtk.override {
inherit (cfg) size tweaks;
accents = [ cfg.accent ];
Expand Down

0 comments on commit d552a1b

Please sign in to comment.