summary refs log tree commit diff
path: root/lib/tests/modules/declare-either.nix
blob: 5a0fa978a1381c8fb1d484c73178d4c66389a86a (plain) (blame)
1
2
3
4
5
{ lib, ... }: {
  options.value = lib.mkOption {
    type = lib.types.either lib.types.int lib.types.str;
  };
}