lib.concatMapAttrs: Simplify stack trace

This commit is contained in:
Robert Hensing 2022-11-23 12:40:42 +00:00
parent a1b9aae0f8
commit 5319ddf7dc

View File

@ -123,7 +123,11 @@ rec {
{ x = "a"; y = "b"; }
=> { x = "a"; xa = "a"; y = "b"; yb = "b"; }
*/
concatMapAttrs = f: flip pipe [ (mapAttrs f) attrValues (foldl' mergeAttrs { }) ];
concatMapAttrs = f: v:
foldl' mergeAttrs { }
(attrValues
(mapAttrs f v)
);
/* Update or set specific paths of an attribute set.