16 lines
333 B
Nix
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 ];
|
|
};
|
|
}
|