qbittorrent: enable queueing and AutoTMM
This commit is contained in:
@@ -232,7 +232,6 @@
|
|||||||
hostId = "0f712d56";
|
hostId = "0f712d56";
|
||||||
firewall.enable = true;
|
firewall.enable = true;
|
||||||
firewall.trustedInterfaces = [ "wg-br" ];
|
firewall.trustedInterfaces = [ "wg-br" ];
|
||||||
firewall.trustedInterfaces = [ "wg-br" ];
|
|
||||||
useDHCP = false;
|
useDHCP = false;
|
||||||
enableIPv6 = false;
|
enableIPv6 = false;
|
||||||
|
|
||||||
|
|||||||
@@ -197,6 +197,7 @@
|
|||||||
dataDir = services_dir + "/syncthing";
|
dataDir = services_dir + "/syncthing";
|
||||||
signalBackupDir = "/${zpool_ssds}/bak/signal";
|
signalBackupDir = "/${zpool_ssds}/bak/signal";
|
||||||
grayjayBackupDir = "/${zpool_ssds}/bak/grayjay";
|
grayjayBackupDir = "/${zpool_ssds}/bak/grayjay";
|
||||||
|
};
|
||||||
|
|
||||||
prowlarr = {
|
prowlarr = {
|
||||||
dataDir = services_dir + "/prowlarr";
|
dataDir = services_dir + "/prowlarr";
|
||||||
@@ -227,7 +228,6 @@
|
|||||||
tvDir = torrents_path + "/media/tv";
|
tvDir = torrents_path + "/media/tv";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
|
||||||
|
|
||||||
pkgs = import nixpkgs {
|
pkgs = import nixpkgs {
|
||||||
inherit system;
|
inherit system;
|
||||||
|
|||||||
@@ -48,7 +48,7 @@
|
|||||||
|
|
||||||
serverConfig.BitTorrent = {
|
serverConfig.BitTorrent = {
|
||||||
Session = {
|
Session = {
|
||||||
MaxConnectionsPerTorrent = 10;
|
MaxConnectionsPerTorrent = 100;
|
||||||
MaxUploadsPerTorrent = 10;
|
MaxUploadsPerTorrent = 10;
|
||||||
MaxConnections = -1;
|
MaxConnections = -1;
|
||||||
MaxUploads = -1;
|
MaxUploads = -1;
|
||||||
@@ -56,9 +56,10 @@
|
|||||||
MaxActiveCheckingTorrents = 5;
|
MaxActiveCheckingTorrents = 5;
|
||||||
|
|
||||||
# queueing
|
# queueing
|
||||||
QueueingSystemEnabled = false;
|
QueueingSystemEnabled = true;
|
||||||
MaxActiveDownloads = 2; # num of torrents that can download at the same time
|
MaxActiveDownloads = 8; # num of torrents that can download at the same time
|
||||||
MaxActiveUploads = 20;
|
MaxActiveUploads = -1;
|
||||||
|
MaxActiveTorrents = -1;
|
||||||
IgnoreSlowTorrentsForQueueing = true;
|
IgnoreSlowTorrentsForQueueing = true;
|
||||||
|
|
||||||
GlobalUPSpeedLimit = 0;
|
GlobalUPSpeedLimit = 0;
|
||||||
@@ -86,6 +87,11 @@
|
|||||||
# how many connections per sec
|
# how many connections per sec
|
||||||
ConnectionSpeed = 300;
|
ConnectionSpeed = 300;
|
||||||
|
|
||||||
|
# Automatic Torrent Management: use category save paths for new torrents
|
||||||
|
DisableAutoTMMByDefault = false;
|
||||||
|
DisableAutoTMMTriggers.CategorySavePathChanged = false;
|
||||||
|
DisableAutoTMMTriggers.DefaultSavePathChanged = false;
|
||||||
|
|
||||||
ChokingAlgorithm = "RateBased";
|
ChokingAlgorithm = "RateBased";
|
||||||
PieceExtentAffinity = true;
|
PieceExtentAffinity = true;
|
||||||
SuggestMode = true;
|
SuggestMode = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user