nixos/resilio: use more accurate int types

This commit is contained in:
h7x4
2025-09-22 16:36:17 +02:00
parent 54f5ec23ec
commit 016298079e
@@ -113,7 +113,7 @@ in
};
listeningPort = mkOption {
type = types.int;
type = types.port;
default = 0;
example = 44444;
description = ''
@@ -139,7 +139,7 @@ in
};
downloadLimit = mkOption {
type = types.int;
type = types.ints.unsigned;
default = 0;
example = 1024;
description = ''
@@ -148,7 +148,7 @@ in
};
uploadLimit = mkOption {
type = types.int;
type = types.ints.unsigned;
default = 0;
example = 1024;
description = ''
@@ -166,7 +166,7 @@ in
};
httpListenPort = mkOption {
type = types.int;
type = types.port;
default = 9000;
description = ''
HTTP port to bind on.