Compare commits

..

2 commits

Author SHA1 Message Date
Nick
3a5e1d3300 feat: added new settings to qbittorrent 2025-11-30 02:29:45 -06:00
Nick
df26985bd6 feat: added picard 2025-11-29 23:35:22 -06:00
2 changed files with 11 additions and 1 deletions

View file

@ -0,0 +1,6 @@
{ pkgs, ... }:
{
home.packages = builtins.attrValues {
inherit (pkgs) picard;
};
}

View file

@ -110,11 +110,15 @@ in
Session = { Session = {
Interface = "wg0"; Interface = "wg0";
InterfaceName = "wg0"; InterfaceName = "wg0";
MaxConnections = -1;
Port = torrentPort; Port = torrentPort;
MaxConnections = -1;
MaxConnectionsPerTorrent = -1; MaxConnectionsPerTorrent = -1;
MaxUploads = -1; MaxUploads = -1;
MaxUploadsPerTorrent = -1;
QueueingSystemEnabled = false; QueueingSystemEnabled = false;
uTPRateLimited = false;
AlternativeGlobalDLSpeedLimit = 0;
AlternativeGlobalUPSpeedLimit = 0;
}; };
}; };