mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
6 lines
113 B
Nix
6 lines
113 B
Nix
|
{ lib, ... }: {
|
||
|
options.value = lib.mkOption {
|
||
|
type = lib.types.either lib.types.int lib.types.str;
|
||
|
};
|
||
|
}
|