summary refs log tree commit diff
path: root/lib/tests/modules/declare-oneOf.nix
blob: df092a14f81e2744e2b76378735be4cd0ec93ed4 (plain) (blame)
1
2
3
4
5
6
7
8
9
{ lib, ... }: {
  options.value = lib.mkOption {
    type = lib.types.oneOf [
      lib.types.int
      (lib.types.listOf lib.types.int)
      lib.types.str
    ];
  };
}