This commit is contained in:
2025-07-22 16:15:39 +02:00
parent b8f2f8960a
commit 2b926beefd

View File

@@ -50,6 +50,7 @@ in {
virtualisation.oci-containers.containers = { virtualisation.oci-containers.containers = {
qbittorrent = { qbittorrent = {
image = "ghcr.io/hotio/qbittorrent:latest"; image = "ghcr.io/hotio/qbittorrent:latest";
user = "share";
autoStart = true; autoStart = true;
dependsOn = ["gluetun"]; dependsOn = ["gluetun"];
ports = [ ports = [
@@ -99,16 +100,16 @@ in {
}; };
}; };
users = { # users = {
users.qbittorrent = { # users.qbittorrent = {
inherit uid; # inherit uid;
group = "qbittorrent"; # group = "${srv.group}";
extraGroups = ["${srv.group}"]; # # extraGroups = ["${srv.group}"];
isSystemUser = true; # isSystemUser = true;
}; # };
groups.qbittorrent = { # # groups.qbittorrent = {
inherit gid; # # inherit gid;
}; # # };
}; # };
}; };
} }