lol

types.uniq types.int -> types.int

types.int already implies uniqueness.

+21 -21
+1 -1
nixos/modules/services/backup/almir.nix
··· 95 95 96 96 port = mkOption { 97 97 default = 35000; 98 - type = types.uniq types.int; 98 + type = types.int; 99 99 description = '' 100 100 Port for Almir web server to listen on. 101 101 '';
+3 -3
nixos/modules/services/backup/bacula.nix
··· 182 182 183 183 port = mkOption { 184 184 default = 9102; 185 - type = types.uniq types.int; 185 + type = types.int; 186 186 description = '' 187 187 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. 188 188 ''; ··· 237 237 238 238 port = mkOption { 239 239 default = 9103; 240 - type = types.uniq types.int; 240 + type = types.int; 241 241 description = '' 242 242 Specifies port number on which the Storage daemon listens for Director connections. The default is 9103. 243 243 ''; ··· 302 302 303 303 port = mkOption { 304 304 default = 9101; 305 - type = types.uniq types.int; 305 + type = types.int; 306 306 description = '' 307 307 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. 308 308 '';
+1 -1
nixos/modules/services/continuous-integration/jenkins/default.nix
··· 50 50 51 51 port = mkOption { 52 52 default = 8080; 53 - type = types.uniq types.int; 53 + type = types.int; 54 54 description = '' 55 55 Specifies port number on which the jenkins HTTP interface listens. The default is 8080. 56 56 '';
+2 -2
nixos/modules/services/misc/gpsd.nix
··· 54 54 }; 55 55 56 56 port = mkOption { 57 - type = types.uniq types.int; 57 + type = types.int; 58 58 default = 2947; 59 59 description = '' 60 60 The port where to listen for TCP connections. ··· 62 62 }; 63 63 64 64 debugLevel = mkOption { 65 - type = types.uniq types.int; 65 + type = types.int; 66 66 default = 0; 67 67 description = '' 68 68 The debugging level.
+2 -2
nixos/modules/services/monitoring/statsd.nix
··· 49 49 port = mkOption { 50 50 description = "Port that stats listens for messages on over UDP"; 51 51 default = 8125; 52 - type = types.uniq types.int; 52 + type = types.int; 53 53 }; 54 54 55 55 mgmt_address = mkOption { ··· 61 61 mgmt_port = mkOption { 62 62 description = "Port to run the management TCP interface on"; 63 63 default = 8126; 64 - type = types.uniq types.int; 64 + type = types.int; 65 65 }; 66 66 67 67 backends = mkOption {
+2 -2
nixos/modules/services/monitoring/ups.nix
··· 32 32 33 33 shutdownOrder = mkOption { 34 34 default = 0; 35 - type = types.uniq types.int; 35 + type = types.int; 36 36 description = '' 37 37 When you have multiple UPSes on your system, you usually need to 38 38 turn them off in a certain order. upsdrvctl shuts down all the ··· 151 151 152 152 maxStartDelay = mkOption { 153 153 default = 45; 154 - type = types.uniq types.int; 154 + type = types.int; 155 155 description = '' 156 156 This can be set as a global variable above your first UPS 157 157 definition and it can also be set in a UPS section. This value
+1 -1
nixos/modules/services/networking/freenet.nix
··· 26 26 }; 27 27 28 28 nice = mkOption { 29 - type = types.uniq types.int; 29 + type = types.int; 30 30 default = 10; 31 31 description = "Set the nice level for the Freenet daemon"; 32 32 };
+1 -1
nixos/modules/services/networking/kippo.nix
··· 21 21 }; 22 22 port = mkOption { 23 23 default = 2222; 24 - type = types.uniq types.int; 24 + type = types.int; 25 25 description = ''TCP port number for kippo to bind to.''; 26 26 }; 27 27 hostname = mkOption {
+2 -2
nixos/modules/services/networking/notbit.nix
··· 39 39 }; 40 40 41 41 port = mkOption { 42 - type = types.uniq types.int; 42 + type = types.int; 43 43 default = 8444; 44 44 description = "The port which the daemon listens for other bitmessage clients"; 45 45 }; 46 46 47 47 nice = mkOption { 48 - type = types.uniq types.int; 48 + type = types.int; 49 49 default = 10; 50 50 description = "Set the nice level for the notbit daemon"; 51 51 };
+1 -1
nixos/modules/services/networking/ntopng.nix
··· 57 57 58 58 http-port = mkOption { 59 59 default = 3000; 60 - type = types.uniq types.int; 60 + type = types.int; 61 61 description = '' 62 62 Sets the HTTP port of the embedded web server. 63 63 '';
+1 -1
nixos/modules/services/torrent/transmission.nix
··· 66 66 }; 67 67 68 68 port = mkOption { 69 - type = types.uniq types.int; 69 + type = types.int; 70 70 default = 9091; 71 71 description = "TCP port number to run the RPC/web interface."; 72 72 };
+1 -1
nixos/modules/services/web-servers/lighttpd/default.nix
··· 130 130 131 131 port = mkOption { 132 132 default = 80; 133 - type = types.uniq types.int; 133 + type = types.int; 134 134 description = '' 135 135 TCP port number for lighttpd to bind to. 136 136 '';
+2 -2
nixos/modules/services/x11/redshift.nix
··· 26 26 day = mkOption { 27 27 description = "Colour temperature to use during day time"; 28 28 default = 5500; 29 - type = types.uniq types.int; 29 + type = types.int; 30 30 }; 31 31 night = mkOption { 32 32 description = "Colour temperature to use during night time"; 33 33 default = 3700; 34 - type = types.uniq types.int; 34 + type = types.int; 35 35 }; 36 36 }; 37 37
+1 -1
nixos/modules/system/boot/systemd.nix
··· 491 491 492 492 services.journald.rateLimitBurst = mkOption { 493 493 default = 100; 494 - type = types.uniq types.int; 494 + type = types.int; 495 495 description = '' 496 496 Configures the rate limiting burst limit (number of messages per 497 497 interval) that is applied to all messages generated on the system.