summary refs log tree commit diff
path: root/lib/tests/modules/declare-int-positive-value.nix
blob: 6e48c6ac8feba63a6bcf9ca4e49bd7d20d95626e (plain) (blame)
1
2
3
4
5
6
7
8
9
{ lib, ... }:

{
  options = {
    value = lib.mkOption {
      type = lib.types.ints.positive;
    };
  };
}