···95959696 port = mkOption {
9797 default = 35000;
9898- type = types.uniq types.int;
9898+ type = types.int;
9999 description = ''
100100 Port for Almir web server to listen on.
101101 '';
+3-3
nixos/modules/services/backup/bacula.nix
···182182183183 port = mkOption {
184184 default = 9102;
185185- type = types.uniq types.int;
185185+ type = types.int;
186186 description = ''
187187 This specifies the port number on which the Client listens for Director connections. It must agree with the FDPort specified in the Client resource of the Director's configuration file. The default is 9102.
188188 '';
···237237238238 port = mkOption {
239239 default = 9103;
240240- type = types.uniq types.int;
240240+ type = types.int;
241241 description = ''
242242 Specifies port number on which the Storage daemon listens for Director connections. The default is 9103.
243243 '';
···302302303303 port = mkOption {
304304 default = 9101;
305305- type = types.uniq types.int;
305305+ type = types.int;
306306 description = ''
307307 Specify the port (a positive integer) on which the Director daemon will listen for Bacula Console connections. This same port number must be specified in the Director resource of the Console configuration file. The default is 9101, so normally this directive need not be specified. This directive should not be used if you specify DirAddresses (N.B plural) directive.
308308 '';
···50505151 port = mkOption {
5252 default = 8080;
5353- type = types.uniq types.int;
5353+ type = types.int;
5454 description = ''
5555 Specifies port number on which the jenkins HTTP interface listens. The default is 8080.
5656 '';
+2-2
nixos/modules/services/misc/gpsd.nix
···5454 };
55555656 port = mkOption {
5757- type = types.uniq types.int;
5757+ type = types.int;
5858 default = 2947;
5959 description = ''
6060 The port where to listen for TCP connections.
···6262 };
63636464 debugLevel = mkOption {
6565- type = types.uniq types.int;
6565+ type = types.int;
6666 default = 0;
6767 description = ''
6868 The debugging level.
+2-2
nixos/modules/services/monitoring/statsd.nix
···4949 port = mkOption {
5050 description = "Port that stats listens for messages on over UDP";
5151 default = 8125;
5252- type = types.uniq types.int;
5252+ type = types.int;
5353 };
54545555 mgmt_address = mkOption {
···6161 mgmt_port = mkOption {
6262 description = "Port to run the management TCP interface on";
6363 default = 8126;
6464- type = types.uniq types.int;
6464+ type = types.int;
6565 };
66666767 backends = mkOption {
+2-2
nixos/modules/services/monitoring/ups.nix
···32323333 shutdownOrder = mkOption {
3434 default = 0;
3535- type = types.uniq types.int;
3535+ type = types.int;
3636 description = ''
3737 When you have multiple UPSes on your system, you usually need to
3838 turn them off in a certain order. upsdrvctl shuts down all the
···151151152152 maxStartDelay = mkOption {
153153 default = 45;
154154- type = types.uniq types.int;
154154+ type = types.int;
155155 description = ''
156156 This can be set as a global variable above your first UPS
157157 definition and it can also be set in a UPS section. This value
+1-1
nixos/modules/services/networking/freenet.nix
···2626 };
27272828 nice = mkOption {
2929- type = types.uniq types.int;
2929+ type = types.int;
3030 default = 10;
3131 description = "Set the nice level for the Freenet daemon";
3232 };
+1-1
nixos/modules/services/networking/kippo.nix
···2121 };
2222 port = mkOption {
2323 default = 2222;
2424- type = types.uniq types.int;
2424+ type = types.int;
2525 description = ''TCP port number for kippo to bind to.'';
2626 };
2727 hostname = mkOption {
+2-2
nixos/modules/services/networking/notbit.nix
···3939 };
40404141 port = mkOption {
4242- type = types.uniq types.int;
4242+ type = types.int;
4343 default = 8444;
4444 description = "The port which the daemon listens for other bitmessage clients";
4545 };
46464747 nice = mkOption {
4848- type = types.uniq types.int;
4848+ type = types.int;
4949 default = 10;
5050 description = "Set the nice level for the notbit daemon";
5151 };
+1-1
nixos/modules/services/networking/ntopng.nix
···57575858 http-port = mkOption {
5959 default = 3000;
6060- type = types.uniq types.int;
6060+ type = types.int;
6161 description = ''
6262 Sets the HTTP port of the embedded web server.
6363 '';
+1-1
nixos/modules/services/torrent/transmission.nix
···6666 };
67676868 port = mkOption {
6969- type = types.uniq types.int;
6969+ type = types.int;
7070 default = 9091;
7171 description = "TCP port number to run the RPC/web interface.";
7272 };
···130130131131 port = mkOption {
132132 default = 80;
133133- type = types.uniq types.int;
133133+ type = types.int;
134134 description = ''
135135 TCP port number for lighttpd to bind to.
136136 '';
+2-2
nixos/modules/services/x11/redshift.nix
···2626 day = mkOption {
2727 description = "Colour temperature to use during day time";
2828 default = 5500;
2929- type = types.uniq types.int;
2929+ type = types.int;
3030 };
3131 night = mkOption {
3232 description = "Colour temperature to use during night time";
3333 default = 3700;
3434- type = types.uniq types.int;
3434+ type = types.int;
3535 };
3636 };
3737
+1-1
nixos/modules/system/boot/systemd.nix
···491491492492 services.journald.rateLimitBurst = mkOption {
493493 default = 100;
494494- type = types.uniq types.int;
494494+ type = types.int;
495495 description = ''
496496 Configures the rate limiting burst limit (number of messages per
497497 interval) that is applied to all messages generated on the system.