WIP - Freya: MinIO

This commit is contained in:
Filippo Berto 2024-05-18 15:01:33 +02:00
parent 697f362844
commit 25367ef5ba
Signed by: bertof
GPG key ID: 9DBF7E6A1D2CE9ED
5 changed files with 59 additions and 11 deletions

View file

@ -0,0 +1,28 @@
{
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"; };
transmission = { enable = true; openFirewall = true; group = "users"; settings.download-dir = "/mnt/raid/condiviso/Torrent"; };
};
systemd.services = {
ombi.serviceConfig = { MemoryHigh = "400M"; MemoryMax = "800M"; };
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"; };
transmission.serviceConfig = { MemoryHigh = "400M"; MemoryMax = "800M"; };
};
}