core/nodes/1_lib/tests/modules/declare-coerced-value.nix
2024-05-21 23:53:33 -04:00

11 lines
172 B
Nix

{ lib, ... }:
{
options = {
value = lib.mkOption {
default = 42;
type = lib.types.coercedTo lib.types.int builtins.toString lib.types.str;
};
};
}