summaryrefslogtreecommitdiffstats
path: root/lib/tests/modules/declare-either.nix
blob: 7d23c0b9101f28f4705a17857e007de1754de06b (plain)
1
2
3
4
5
6
{ lib, ... }:
{
  options.value = lib.mkOption {
    type = lib.types.either lib.types.int lib.types.str;
  };
}