types.uniq types.int -> types.int

types.int already implies uniqueness.
This commit is contained in:
Eelco Dolstra
2015-06-15 18:11:32 +02:00
parent c738b309ee
commit 19ffa212af
14 changed files with 21 additions and 21 deletions
+2 -2
View File
@@ -54,7 +54,7 @@ in
};
port = mkOption {
type = types.uniq types.int;
type = types.int;
default = 2947;
description = ''
The port where to listen for TCP connections.
@@ -62,7 +62,7 @@ in
};
debugLevel = mkOption {
type = types.uniq types.int;
type = types.int;
default = 0;
description = ''
The debugging level.