From 4b9c79f308ea91f64ba3a6b1fc32afe9c4f4341b Mon Sep 17 00:00:00 2001 From: prescientmoon Date: Sun, 28 Apr 2024 01:23:59 +0200 Subject: [PATCH] Fix qbit configuration --- hosts/nixos/lapetus/services/qbittorrent.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/hosts/nixos/lapetus/services/qbittorrent.nix b/hosts/nixos/lapetus/services/qbittorrent.nix index 96be303..b4a6b18 100644 --- a/hosts/nixos/lapetus/services/qbittorrent.nix +++ b/hosts/nixos/lapetus/services/qbittorrent.nix @@ -33,11 +33,10 @@ in ]; volumes = [ "${vpnConfigDir}:/data/vpn" ]; - ports = [ "${port}:${port}" ]; + ports = [ "${toString port}:${toString port}" ]; environment = { KILL_SWITCH = "on"; # Turns off internet access if the VPN connection drops - FORWARDED_PORTS = "nl-ams-59103"; }; }; # }}}