nixpkgs-odroid-hc4/lib/tests/modules/declare-either.nix
2025-12-20 09:59:59 +11:00

5 lines
113 B
Nix

{ lib, ... }: {
options.value = lib.mkOption {
type = lib.types.either lib.types.int lib.types.str;
};
}