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

{
  options = {
    value = lib.mkOption {
      type = lib.types.ints.between (-21) 43;
    };
  };
}