mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +03:00
28 lines
432 B
Nix
28 lines
432 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 ])
|
||
|
];
|
||
|
}
|