nixos-configuration/hosts/iron/services/sturzbach.nix
2023-11-08 23:54:36 +00:00

16 lines
333 B
Nix

args@{ config, lib, custom-utils, ... }:
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 ];
};
}