{ config, lib, pkgs, ... }: { virtualisation.oci-containers.containers.box-sabnzbd = { image = "linuxserver/sabnzbd:latest"; autoStart = true; dependsOn = [ # "pihole" ]; ports = [ # "8080:8080" ]; volumes = [ "/media/Stash-Usenet:/downloads" "box-sabnzbd_config:/config" ]; environment = { PUID = "3001"; PGID = "3001"; TZ = "Europe/Berlin"; }; extraOptions = [ "--net=behind-nginx" ]; }; }