From 2b926beefd6247c6c376d530dd6934278ccef167 Mon Sep 17 00:00:00 2001 From: cnst Date: Tue, 22 Jul 2025 16:15:39 +0200 Subject: [PATCH] fesf 3 --- modules/server/qbittorrent/default.nix | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/modules/server/qbittorrent/default.nix b/modules/server/qbittorrent/default.nix index c3fc26bd..8f56f095 100644 --- a/modules/server/qbittorrent/default.nix +++ b/modules/server/qbittorrent/default.nix @@ -50,6 +50,7 @@ in { virtualisation.oci-containers.containers = { qbittorrent = { image = "ghcr.io/hotio/qbittorrent:latest"; + user = "share"; autoStart = true; dependsOn = ["gluetun"]; ports = [ @@ -99,16 +100,16 @@ in { }; }; - users = { - users.qbittorrent = { - inherit uid; - group = "qbittorrent"; - extraGroups = ["${srv.group}"]; - isSystemUser = true; - }; - groups.qbittorrent = { - inherit gid; - }; - }; + # users = { + # users.qbittorrent = { + # inherit uid; + # group = "${srv.group}"; + # # extraGroups = ["${srv.group}"]; + # isSystemUser = true; + # }; + # # groups.qbittorrent = { + # # inherit gid; + # # }; + # }; }; }