some changes

This commit is contained in:
2025-07-21 18:49:10 +02:00
parent df0af0f429
commit b435210839
2 changed files with 11 additions and 4 deletions

View File

@@ -29,6 +29,13 @@ in {
"fuse" "fuse"
"fail2ban" "fail2ban"
"vaultwarden" "vaultwarden"
"qbittorrent"
"lidarr"
"prowlarr"
"bazarr"
"sonarr"
"radarr"
"media"
]; ];
}; };

View File

@@ -58,15 +58,15 @@ in {
"--network=container:gluetun" "--network=container:gluetun"
]; ];
volumes = [ volumes = [
"/var/lib/qbittorrent:/config" "config:/var/lib/qbittorrent"
"/shared/downloads:/downloads" "downloads:/home/cnst/downloads"
]; ];
environmentFiles = [ environmentFiles = [
config.age.secrets.gluetunEnv.path config.age.secrets.gluetunEnv.path
]; ];
environment = { environment = {
PUID = "${builtins.toString srv.uid}"; PUID = "0";
PGID = "${builtins.toString srv.gid}"; PGID = "777";
TZ = "Etc/UTC"; TZ = "Etc/UTC";
WEBUI_PORT = "${builtins.toString cfg.port}"; WEBUI_PORT = "${builtins.toString cfg.port}";
}; };