From d3faf45c6af6f46c64d754f7f8cdee260207bee1 Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Mon, 1 Sep 2025 21:59:46 -0400 Subject: [PATCH] qbt: change limits --- services/qbittorrent.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/services/qbittorrent.nix b/services/qbittorrent.nix index 777ca1a..42a7c7e 100644 --- a/services/qbittorrent.nix +++ b/services/qbittorrent.nix @@ -54,9 +54,9 @@ MaxActiveUploads = 20; IgnoreSlowTorrentsForQueueing = true; - GlobalUPSpeedLimit = 0; # unlimited upload - GlobalDLSpeedLimit = 0; # unlimited download - IncludeOverheadInLimits = false; + GlobalUPSpeedLimit = 1000; + GlobalDLSpeedLimit = 1000; + IncludeOverheadInLimits = true; GlobalMaxRatio = 6.0;