From 13394d117674449fb38428d0b79132d7e2759084 Mon Sep 17 00:00:00 2001 From: cnst Date: Tue, 22 Jul 2025 15:25:08 +0200 Subject: [PATCH] hotio qbt --- modules/server/qbittorrent/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/server/qbittorrent/default.nix b/modules/server/qbittorrent/default.nix index 3a356e6b..77125d5c 100644 --- a/modules/server/qbittorrent/default.nix +++ b/modules/server/qbittorrent/default.nix @@ -49,7 +49,7 @@ in { virtualisation.oci-containers.containers = { qbittorrent = { - image = "linuxserver/qbittorrent:latest"; + image = "ghcr.io/hotio/qbittorrent:latest"; autoStart = true; dependsOn = ["gluetun"]; ports = [ @@ -60,15 +60,15 @@ in { "--network=container:gluetun" ]; volumes = [ - "config:/var/lib/qbittorrent" - "downloads:/share/downloads" + "/var/lib/qbittorrent:/config:rw" + "/share/downloads:/downloads:rw" ]; environmentFiles = [ config.age.secrets.gluetunEnv.path ]; environment = { - PUID = toString uid; - PGID = toString gid; + # PUID = toString uid; + # PGID = toString gid; TZ = "Europe/Stockholm"; WEBUI_PORT = "${builtins.toString cfg.port}"; };