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

29 lines
532 B
Nix
Raw Normal View History

2024-05-01 22:14:04 +00:00
{ lib, config, ... }:
let
inherit (lib) types;
2024-06-30 08:12:46 +00:00
in
{
2024-05-01 22:14:04 +00:00
options = {
2024-06-30 08:12:46 +00:00
fun = lib.mkOption { type = types.functionTo (types.attrsOf types.str); };
2024-05-01 22:14:04 +00:00
result = lib.mkOption {
type = types.str;
2024-06-30 08:12:46 +00:00
default = toString (
lib.attrValues (
config.fun {
a = "a";
b = "b";
c = "c";
}
)
);
2024-05-01 22:14:04 +00:00
};
};
config.fun = lib.mkMerge [
(input: { inherit (input) a; })
(input: { inherit (input) b; })
2024-06-30 08:12:46 +00:00
(input: { b = lib.mkForce input.c; })
2024-05-01 22:14:04 +00:00
];
}