lib/types: Add oneOf, extension of either to a list of types

This commit is contained in:
Silvan Mosberger
2019-08-06 14:08:42 +02:00
parent c6e7bc2977
commit 9a44f44d4c
5 changed files with 42 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
{ lib, ... }: {
options.value = lib.mkOption {
type = lib.types.either lib.types.int lib.types.str;
};
}