From 5a81e4458df18131ac02dbbca3df4b9f05675bec Mon Sep 17 00:00:00 2001 From: Nathan McCarty Date: Sun, 9 Apr 2023 18:39:48 -0400 Subject: [PATCH] Setup sabnzbd --- machines/perception/configuration.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/machines/perception/configuration.nix b/machines/perception/configuration.nix index e3a98a8..b7357b8 100644 --- a/machines/perception/configuration.nix +++ b/machines/perception/configuration.nix @@ -101,6 +101,20 @@ volumes = [ "/var/lib/tautulli:/config" ]; }; # Configure sabnzbd + "sabnzbd" = { + image = "lscr.io/linuxserver/sabnzbd:latest"; + environment = { + "PUID" = "1000"; + "PGID" = "1000"; + "TZ" = "America/New_York"; + }; + ports = [ "8080:8080" ]; + volumes = [ + "/var/lib/sabnzbd:/config" + "/mnt/scratch/sabnzbd/download-complete:/downloads" + "/mnt/scratch/sabnzbd/download:/incomplete-downloads" + ]; + }; # Configure sonarr # Configure radarr };