Unverified Commit ed404818 authored by n0099's avatar n0099 Committed by GitHub
Browse files

nixos/tor: replace `ints.between 0 65535` with `lib.types.ints.u16`

parent 31b883fb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -795,7 +795,7 @@ in
                    };
                    options.HiddenServiceMaxStreams = lib.mkOption {
                      description = (descriptionGeneric "HiddenServiceMaxStreams");
                      type = with lib.types; nullOr port;
                      type = with lib.types; nullOr ints.u16;
                      default = null;
                    };
                    options.HiddenServiceMaxStreamsCloseCircuit = optionBool "HiddenServiceMaxStreamsCloseCircuit";