nixpkgs/lib/tests/modules/declare-coerced-value-no-default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
152 B
Nix
Raw Normal View History

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