From ef9ba83249b7e723c9f0c1c13a80b67be95f9bcd Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Sun, 15 Jun 2025 00:28:25 -0700 Subject: [PATCH] qbt settings adjust --- services/qbittorrent.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/services/qbittorrent.nix b/services/qbittorrent.nix index eab7c5f..4cae6a7 100644 --- a/services/qbittorrent.nix +++ b/services/qbittorrent.nix @@ -11,6 +11,7 @@ imports = [ (serviceMountDeps "qbittorrent" [ service_configs.torrents_path + config.services.qbittorrent.serverConfig.Preferences.Downloads.TempPath "/var/lib/qBittorrent/qBittorrent" ]) ]; @@ -44,8 +45,8 @@ AlternativeUIEnabled = true; RootFolder = builtins.toString ( pkgs.fetchzip { - url = "https://github.com/VueTorrent/VueTorrent/releases/download/v2.25.0/vuetorrent.zip"; - sha256 = "sOaQNw6AnpwNFEextgTnsjEOfpl3/lpoOZFgFOz7Bos="; + url = "https://github.com/VueTorrent/VueTorrent/releases/download/v2.26.0/vuetorrent.zip"; + sha256 = "EFVzsr/OZ/QMJ+NN3kDkmIk6FCCnqgK6DgsLWNonspU="; } ); @@ -105,6 +106,10 @@ "http://0d.kebhana.mx:443/announce" ] ); + + # idk why it also has to be specified here too? + TempPath = config.services.qbittorrent.serverConfig.Preferences.Downloads.TempPath; + TempPathEnabled = true; }; }; };