mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2025-02-08 03:07:17 +02:00
10 lines
171 B
Nix
10 lines
171 B
Nix
![]() |
{ lib, ... }: {
|
||
|
options.value = lib.mkOption {
|
||
|
type = lib.types.oneOf [
|
||
|
lib.types.int
|
||
|
(lib.types.listOf lib.types.int)
|
||
|
lib.types.str
|
||
|
];
|
||
|
};
|
||
|
}
|