From f87801f73ed749cd549871b976956054dc6f901e Mon Sep 17 00:00:00 2001 From: Filippo Berto Date: Sun, 13 Jul 2025 23:34:47 +0200 Subject: [PATCH] Torrentbox: jellyseerr --- instances/baldur/configuration.nix | 7 ++- modules/nixos/torrentbox.nix | 78 ++++++------------------------ 2 files changed, 22 insertions(+), 63 deletions(-) diff --git a/instances/baldur/configuration.nix b/instances/baldur/configuration.nix index ecc71e7..b76acd6 100644 --- a/instances/baldur/configuration.nix +++ b/instances/baldur/configuration.nix @@ -158,7 +158,12 @@ proxyWebsockets = true; }; }; - # "ombi.bertof.net" = ssl // { locations."/" = { proxyPass = "http://heimdall.tsn:5000/"; proxyWebsockets = true; }; }; + "ombi.bertof.net" = ssl // { + locations."/" = { + proxyPass = "http://heimdall.tsn:5000/"; + proxyWebsockets = true; + }; + }; "jellyfin.bertof.net" = ssl // { locations."/" = { proxyPass = "http://heimdall.tsn:8096/"; diff --git a/modules/nixos/torrentbox.nix b/modules/nixos/torrentbox.nix index 94a9809..3d58e5b 100644 --- a/modules/nixos/torrentbox.nix +++ b/modules/nixos/torrentbox.nix @@ -1,36 +1,13 @@ { pkgs, ... }: { services = { - # ombi = { enable = true; openFirewall = true; group = "users"; }; - - bazarr = { - enable = true; - openFirewall = true; - group = "users"; - }; - lidarr = { - enable = true; - openFirewall = true; - group = "users"; - }; - prowlarr = { - enable = true; - openFirewall = true; - }; - radarr = { - enable = true; - openFirewall = true; - group = "users"; - }; - readarr = { - enable = true; - openFirewall = true; - group = "users"; - }; - sonarr = { - enable = true; - openFirewall = true; - group = "users"; - }; + bazarr = { enable = true; openFirewall = true; group = "users"; }; + # jellyseerr = { enable = true; openFirewall = true; }; + lidarr = { enable = true; openFirewall = true; group = "users"; }; + ombi = { enable = true; openFirewall = true; }; + prowlarr = { enable = true; openFirewall = true; }; + radarr = { enable = true; openFirewall = true; group = "users"; }; + readarr = { enable = true; openFirewall = true; group = "users"; }; + sonarr = { enable = true; openFirewall = true; group = "users"; }; transmission = { enable = true; @@ -42,36 +19,13 @@ }; systemd.services = { - # ombi.serviceConfig = { MemoryHigh = "400M"; MemoryMax = "1G"; }; - - bazarr.serviceConfig = { - MemoryHigh = "600M"; - MemoryMax = "2G"; - }; - lidarr.serviceConfig = { - MemoryHigh = "600M"; - MemoryMax = "2G"; - }; - prowlarr.serviceConfig = { - MemoryHigh = "600M"; - MemoryMax = "2G"; - }; - radarr.serviceConfig = { - MemoryHigh = "600M"; - MemoryMax = "2G"; - }; - readarr.serviceConfig = { - MemoryHigh = "600M"; - MemoryMax = "2G"; - }; - sonarr.serviceConfig = { - MemoryHigh = "600M"; - MemoryMax = "2G"; - }; - - transmission.serviceConfig = { - MemoryHigh = "400M"; - MemoryMax = "1G"; - }; + bazarr.serviceConfig = { MemoryHigh = "600M"; MemoryMax = "2G"; }; + lidarr.serviceConfig = { MemoryHigh = "600M"; MemoryMax = "2G"; }; + ombi.serviceConfig = { MemoryHigh = "400M"; MemoryMax = "1G"; }; + prowlarr.serviceConfig = { MemoryHigh = "600M"; MemoryMax = "2G"; }; + radarr.serviceConfig = { MemoryHigh = "600M"; MemoryMax = "2G"; }; + readarr.serviceConfig = { MemoryHigh = "600M"; MemoryMax = "2G"; }; + sonarr.serviceConfig = { MemoryHigh = "600M"; MemoryMax = "2G"; }; + transmission.serviceConfig = { MemoryHigh = "400M"; MemoryMax = "1G"; }; }; }