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

16 lines
310 B
Nix

{ config, ... }:
let
inherit (config.networking) ports;
in
{
jalr.qbittorrent = {
enable = true;
downloadDir = "/sturzbach";
fqdn = "sturzbach.jalr.de";
webuiPort = ports.qbittorrent-webui.tcp;
};
networking.firewall = {
allowedTCPPorts = [ ports.qbittorrent-torrent.tcp ];
};
}