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

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

28 lines
432 B
Nix
Raw Permalink Normal View History

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