From c8dd5f2bbfdfbc9d97caf849dabe51d527eca6fc Mon Sep 17 00:00:00 2001 From: Hadi <112569860+anotherhadi@users.noreply.github.com> Date: Tue, 4 Nov 2025 16:14:40 +0100 Subject: [PATCH] add readarr Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com> --- server-modules/arr.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server-modules/arr.nix b/server-modules/arr.nix index 3d7a518..ee7ccfc 100644 --- a/server-modules/arr.nix +++ b/server-modules/arr.nix @@ -40,6 +40,7 @@ in { radarr.enable = true; sonarr.enable = true; bazarr.enable = true; + readarr.enable = true; transmission = { enable = true; extraSettings = {trash-original-torrent-files = true;}; @@ -59,5 +60,6 @@ in { "radarr.${domain}" = mkVirtualHost 7878; "sonarr.${domain}" = mkVirtualHost 8989; "transmission.${domain}" = mkVirtualHost 9091; + "readarr.${domain}" = mkVirtualHost 8787; }; }