From d7c6f232800ab0dd420d28930db1f8adc3d201a0 Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Mon, 23 Feb 2026 17:59:30 -0600 Subject: [PATCH] chore: radarr installed --- hosts/unstable/hosea/arr.nix | 5 +++++ modules/hm/gui/bookmarks.nix | 13 +++++++++++++ 2 files changed, 18 insertions(+) diff --git a/hosts/unstable/hosea/arr.nix b/hosts/unstable/hosea/arr.nix index ea4e97e..be89b0c 100644 --- a/hosts/unstable/hosea/arr.nix +++ b/hosts/unstable/hosea/arr.nix @@ -21,12 +21,17 @@ let in { services = { + radarr = { + enable = true; + openFirewall = true; + }; transmission = { enable = true; openPeerPorts = true; openRPCPort = true; package = pkgs.transmission_4; settings = { + download-dir = "/arr/transmission/downloads"; rpc-bind-address = "0.0.0.0"; rpc-host-whitelist = whitelists; rpc-host-whitelist-enabled = false; diff --git a/modules/hm/gui/bookmarks.nix b/modules/hm/gui/bookmarks.nix index 4031f25..6c96303 100644 --- a/modules/hm/gui/bookmarks.nix +++ b/modules/hm/gui/bookmarks.nix @@ -357,6 +357,19 @@ } ]; } + { + name = "Media"; + bookmarks = [ + { + name = "Transmission"; + url = "https://hosea.shire-zebra.ts.net:9091/"; + } + { + name = "Radarr (Movies)"; + url = "https://hosea.shire-zebra.ts.net:7878/"; + } + ]; + } ]; } ]