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

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

29 lines
532 B
Nix
Raw Normal View History

2024-05-01 22:14:04 +00:00
{ lib, config, ... }:
let
inherit (lib) types;
in
{
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";
}
2024-06-30 08:16:52 +00:00
)
2024-05-01 22:14:04 +00:00
);
};
};
config.fun = lib.mkMerge [
(input: { inherit (input) a; })
(input: { inherit (input) b; })
(input: { b = lib.mkForce input.c; })
];
}