nixpkgs/lib/tests/modules/functionTo/wrong-type.nix

19 lines
273 B
Nix
Raw Normal View History

2021-01-26 21:30:07 +00:00
{ 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;
}