nixpkgs/lib/tests/modules/functionTo/wrong-type.nix
2021-01-27 00:17:56 +01:00

19 lines
273 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 0;
};
};
config.fun = input: input + 1;
}