From f0bcdd9946f207a723503c634413f1ffca85f540 Mon Sep 17 00:00:00 2001 From: Wekuz Date: Sun, 12 Apr 2026 15:23:20 +0300 Subject: [PATCH] Add Sonarr --- hosts/plexy/default.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/hosts/plexy/default.nix b/hosts/plexy/default.nix index 24bc529..f096432 100644 --- a/hosts/plexy/default.nix +++ b/hosts/plexy/default.nix @@ -72,6 +72,7 @@ 15835 # Glance 15836 # qBittorrent (Web UI) 15837 # Radarr + 15838 # Sonarr 17650 # qBittorrent (torrent) ]; }; @@ -238,6 +239,12 @@ server.port = 15837; }; }; + sonarr = { + enable = true; + settings = { + server.port = 15838; + }; + }; }; environment.variables.EDITOR = "nvim"; @@ -274,6 +281,11 @@ "media" ]; }; + sonarr = { + extraGroups = [ + "media" + ]; + }; }; }; @@ -281,6 +293,7 @@ "d /storage 0755 root root -" "d /storage/media 2775 wekuz media -" "d /storage/media/movies 2775 wekuz media -" + "d /storage/media/tv 2775 wekuz media -" "d /storage/torrents 2775 wekuz media -" ];