mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-11 18:32:23 +08:00
10 lines
110 B
Nix
10 lines
110 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
options = {
|
|
value = lib.mkOption {
|
|
type = lib.types.ints.positive;
|
|
};
|
|
};
|
|
}
|