17 lines
278 B
Nix
17 lines
278 B
Nix
|
{ lib, config, ... }:
|
||
|
let
|
||
|
inherit (lib) types;
|
||
|
in
|
||
|
{
|
||
|
options = {
|
||
|
fun = lib.mkOption { type = types.functionTo types.str; };
|
||
|
|
||
|
result = lib.mkOption {
|
||
|
type = types.str;
|
||
|
default = config.fun "input";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
config.fun = input: "input is ${input}";
|
||
|
}
|