mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-10-31 22:51:22 +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;
|
|
};
|
|
}
|