nixpkgs/lib/tests/modules/functionTo/merging-attrs.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
552 B
Nix
Raw Normal View History

2021-01-26 22:30:07 +01:00
{ lib, config, ... }:
let
inherit (lib) types;
in
{
2021-01-26 22:30:07 +01:00
options = {
fun = lib.mkOption {
type = types.functionTo (types.attrsOf types.str);
};
result = lib.mkOption {
type = types.str;
default = toString (
lib.attrValues (
config.fun {
a = "a";
b = "b";
c = "c";
}
)
);
2021-01-26 22:30:07 +01:00
};
};
config.fun = lib.mkMerge [
(input: { inherit (input) a; })
(input: { inherit (input) b; })
(input: {
b = lib.mkForce input.c;
})
];
}