From 155ebbafcd3d06a89c877cfdf4cfa4e4218a780a Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Thu, 19 Feb 2026 19:12:28 -0500 Subject: [PATCH] qbittorrent: enable queueing and AutoTMM --- services/qbittorrent.nix | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/services/qbittorrent.nix b/services/qbittorrent.nix index c366222..4d18eb0 100644 --- a/services/qbittorrent.nix +++ b/services/qbittorrent.nix @@ -48,7 +48,7 @@ serverConfig.BitTorrent = { Session = { - MaxConnectionsPerTorrent = 10; + MaxConnectionsPerTorrent = 100; MaxUploadsPerTorrent = 10; MaxConnections = -1; MaxUploads = -1; @@ -56,9 +56,10 @@ MaxActiveCheckingTorrents = 5; # queueing - QueueingSystemEnabled = false; - MaxActiveDownloads = 2; # num of torrents that can download at the same time - MaxActiveUploads = 20; + QueueingSystemEnabled = true; + MaxActiveDownloads = 8; # num of torrents that can download at the same time + MaxActiveUploads = -1; + MaxActiveTorrents = -1; IgnoreSlowTorrentsForQueueing = true; GlobalUPSpeedLimit = 0; @@ -86,6 +87,11 @@ # how many connections per sec ConnectionSpeed = 300; + # Automatic Torrent Management: use category save paths for new torrents + DisableAutoTMMByDefault = false; + DisableAutoTMMTriggers.CategorySavePathChanged = false; + DisableAutoTMMTriggers.DefaultSavePathChanged = false; + ChokingAlgorithm = "RateBased"; PieceExtentAffinity = true; SuggestMode = true;