diff --git a/modules/nixos/torrentbox.nix b/modules/nixos/torrentbox.nix index 0374c6e..79fb610 100644 --- a/modules/nixos/torrentbox.nix +++ b/modules/nixos/torrentbox.nix @@ -1,7 +1,7 @@ { services = { - ombi = { enable = true; openFirewall = true; group = "users"; }; + # ombi = { enable = true; openFirewall = true; group = "users"; }; bazarr = { enable = true; openFirewall = true; group = "users"; }; lidarr = { enable = true; openFirewall = true; group = "users"; }; @@ -14,15 +14,15 @@ }; systemd.services = { - ombi.serviceConfig = { MemoryHigh = "400M"; MemoryMax = "800M"; }; + # ombi.serviceConfig = { MemoryHigh = "400M"; MemoryMax = "1G"; }; - bazarr.serviceConfig = { MemoryHigh = "400M"; MemoryMax = "800M"; }; - lidarr.serviceConfig = { MemoryHigh = "400M"; MemoryMax = "800M"; }; - prowlarr.serviceConfig = { MemoryHigh = "400M"; MemoryMax = "800M"; }; - radarr.serviceConfig = { MemoryHigh = "400M"; MemoryMax = "800M"; }; - readarr.serviceConfig = { MemoryHigh = "400M"; MemoryMax = "800M"; }; - sonarr.serviceConfig = { MemoryHigh = "400M"; MemoryMax = "800M"; }; + bazarr.serviceConfig = { MemoryHigh = "400M"; MemoryMax = "1G"; }; + lidarr.serviceConfig = { MemoryHigh = "400M"; MemoryMax = "1G"; }; + prowlarr.serviceConfig = { MemoryHigh = "400M"; MemoryMax = "1G"; }; + radarr.serviceConfig = { MemoryHigh = "400M"; MemoryMax = "1G"; }; + readarr.serviceConfig = { MemoryHigh = "400M"; MemoryMax = "1G"; }; + sonarr.serviceConfig = { MemoryHigh = "400M"; MemoryMax = "1G"; }; - transmission.serviceConfig = { MemoryHigh = "400M"; MemoryMax = "800M"; }; + transmission.serviceConfig = { MemoryHigh = "400M"; MemoryMax = "1G"; }; }; }