brainix/sources/nixpkgs/lib/tests/modules/declare-coerced-value-unsound.nix
2026-02-13 17:06:24 +09:00

10 lines
170 B
Nix

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