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