mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-14 21:49:34 +03:00
7 lines
113 B
Nix
7 lines
113 B
Nix
![]() |
{ lib, ... }:
|
||
|
{
|
||
|
options.value = lib.mkOption {
|
||
|
type = lib.types.either lib.types.int lib.types.str;
|
||
|
};
|
||
|
}
|