mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 11:10:03 +00:00
lib/types.nix: Use // instead of mergeAttrs
This commit is contained in:
parent
4d4682c2b6
commit
5aa2a98dfa
|
@ -270,7 +270,7 @@ rec {
|
|||
name = "attrs";
|
||||
description = "attribute set";
|
||||
check = isAttrs;
|
||||
merge = loc: foldl' (res: def: mergeAttrs res def.value) {};
|
||||
merge = loc: foldl' (res: def: res // def.value) {};
|
||||
emptyValue = { value = {}; };
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue