add torrents to nixarr stack

This commit is contained in:
RingOfStorms (Joshua Bell) 2025-07-23 15:55:40 -05:00
parent bb90226e5e
commit d8fa93baac
4 changed files with 67 additions and 19 deletions

View file

@ -23,12 +23,26 @@
enable = true; # Torrent downloader
vpn.enable = true;
peerPort = 51820;
extraAllowedIps = [
"100.64.0.0/10"
];
extraSettings = {
rpc-bind-address = "0.0.0.0";
rpc-authentication-required = false;
rpc-username = "transmission";
rpc-password = "transmission";
rpc-host-whitelist-enabled = false;
rpc-whitelist-enabled = false;
rpc-whitelist = "127.0.0.1,::1,192.168.1.71,100.64.0.0/10";
};
};
prowlarr.enable = true; # Index manager
autobrr.enable = true; # Automated torrent downloader
sonarr.enable = true; # TV
radarr.enable = true; # Movies
bazarr.enable = true; # subtitles for sonarr and radarr
lidarr.enable = false; # music
# recyclarr.enable = true; # not sure how to use this yet
};
services.nginx = {