From d71063827895daaecf1942f0a31590180e406ddd Mon Sep 17 00:00:00 2001 From: Andrea Ciceri Date: Thu, 10 Oct 2024 17:07:38 +0200 Subject: [PATCH] Decrease torrents ratio (probably the old disk died because of this) --- modules/transmission/default.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/modules/transmission/default.nix b/modules/transmission/default.nix index 2052b37..15db1d1 100644 --- a/modules/transmission/default.nix +++ b/modules/transmission/default.nix @@ -4,8 +4,6 @@ enable = true; openRPCPort = true; openPeerPorts = true; - # FIXME remove after https://github.com/NixOS/nixpkgs/issues/279049 - webHome = "${config.services.transmission.package}/share/transmission/web"; settings = { download-dir = "/mnt/hd/torrent"; incomplete-dir = "/mnt/hd/torrent/.incomplete"; @@ -32,7 +30,7 @@ alt-speed-time-day = 127; # all days, bitmap, 0111110 is weekends and 1000001 is weekdays ratio-limit-enabled = true; - ratio-limit = 100; # I am a generous god + ratio-limit = 2; }; };