core/lib/tests/modules/declare-either.nix

6 lines
113 B
Nix
Raw Normal View History

2024-05-01 22:14:04 +00:00
{ lib, ... }: {
options.value = lib.mkOption {
type = lib.types.either lib.types.int lib.types.str;
};
}