mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 04:13:01 +00:00
25 lines
408 B
Nix
25 lines
408 B
Nix
{ 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 ])
|
|
];
|
|
}
|