nixos-configuration/hosts/iron/services/sturzbach.nix
2025-04-16 22:54:28 +02:00

16 lines
298 B
Nix

args:
let
ports = import ../ports.nix args;
in
{
jalr.qbittorrent = {
enable = true;
downloadDir = "/sturzbach";
fqdn = "sturzbach.jalr.de";
webuiPort = ports.qbittorrent-webui.tcp;
};
networking.firewall = {
allowedTCPPorts = [ ports.qbittorrent-torrent.tcp ];
};
}