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

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