462c048c77
For values that are positive, but cannot be 0.
10 lines
110 B
Nix
10 lines
110 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
options = {
|
|
value = lib.mkOption {
|
|
type = lib.types.ints.positive;
|
|
};
|
|
};
|
|
}
|