mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 16:42:09 +00:00
26 lines
421 B
Nix
26 lines
421 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: lib.mkAfter [ input.a ])
|
||
|
(input: [ input.b ])
|
||
|
];
|
||
|
}
|