core/lib/tests/modules/declare-coerced-value-unsound.nix
2024-05-01 18:26:04 -04:00

11 lines
170 B
Nix

{ lib, ... }:
{
options = {
value = lib.mkOption {
default = "12";
type = lib.types.coercedTo lib.types.str lib.toInt lib.types.ints.s8;
};
};
}