1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-26 19:16:47 +03:00
nixpkgs/lib/tests/modules/declare-coerced-value-no-default.nix

10 lines
152 B
Nix
Raw Normal View History

2024-09-10 22:45:27 +01:00
{ lib, ... }:
{
options = {
value = lib.mkOption {
type = lib.types.coercedTo lib.types.int builtins.toString lib.types.str;
};
};
}