mirror of
https://github.com/nix-community/home-manager
synced 2024-11-09 12:49:44 +01:00
dunst: fix warning for lib.cartesianProductOfSets
"lib.cartesianProductOfSets is a deprecated alias of lib.cartesianProduct." Rename happened in nixpkgs commit `228621e42dc43f936b66e0ed042c90c511aa0535`.
This commit is contained in:
parent
c514e862cd
commit
bbe6e94737
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue