28 lines
1.2 KiB
Nix
28 lines
1.2 KiB
Nix
{
|
|
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 = "1G"; };
|
|
|
|
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 = "1G"; };
|
|
};
|
|
}
|