Skip to content

Commit

Permalink
dunst: fix warning for lib.cartesianProductOfSets
Browse files Browse the repository at this point in the history
"lib.cartesianProductOfSets is a deprecated alias of lib.cartesianProduct."
Rename happened in nixpkgs commit `228621e42dc43f936b66e0ed042c90c511aa0535`.
  • Loading branch information
0x4A6F authored Jul 5, 2024
1 parent c514e86 commit bbe6e94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/services/dunst.nix
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ in {

mkPath = { basePath, theme, category }:
"${basePath}/share/icons/${theme.name}/${theme.size}/${category}";
in concatMapStringsSep ":" mkPath (cartesianProductOfSets {
in concatMapStringsSep ":" mkPath (cartesianProduct {
basePath = basePaths;
theme = themes;
category = categories;
Expand Down

0 comments on commit bbe6e94

Please sign in to comment.