WIP - Freya: MinIO
This commit is contained in:
parent
697f362844
commit
25367ef5ba
5 changed files with 59 additions and 11 deletions
28
modules/nixos/torrentbox.nix
Normal file
28
modules/nixos/torrentbox.nix
Normal 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"; };
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue