python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / nixos / modules / services / networking / nghttpx / server-options.nix
blob48e2a304559696faa345588abbd128eb685f16a6
1 { lib, ... }:
2 { options = {
3     host = lib.mkOption {
4       type        = lib.types.str;
5       example     = "127.0.0.1";
6       description = lib.mdDoc ''
7         Server host address.
8       '';
9     };
10     port = lib.mkOption {
11       type        = lib.types.int;
12       example     = 5088;
13       description = lib.mdDoc ''
14         Server host port.
15       '';
16     };
17   };