From 616460e4eec0a993c5cf4a01c2d8e91b0cc424a2 Mon Sep 17 00:00:00 2001 From: ulic-youthlic Date: Thu, 6 Mar 2025 05:59:46 +0800 Subject: [PATCH] add upload speed limit for transmission --- nixos/modules/programs/transmission.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/modules/programs/transmission.nix b/nixos/modules/programs/transmission.nix index c4be3e0..ddc40ac 100644 --- a/nixos/modules/programs/transmission.nix +++ b/nixos/modules/programs/transmission.nix @@ -31,6 +31,8 @@ in watch-dir-enabled = true; default-trackers = builtins.readFile "${inputs.bt-tracker}/all.txt"; rpc-bind-address = "0.0.0.0"; + speed-limit-up-enabled = true; + speed-limit-up = 1000; }; openRPCPort = true; openPeerPorts = true;