diff options
| author | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2026-02-25 13:47:47 -0600 |
|---|---|---|
| committer | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2026-02-25 13:47:47 -0600 |
| commit | fbecc291f4d3a5f93e487526701d43a494b88ece (patch) | |
| tree | 8af9070313d274ed5ef282f395b9163df3364eb2 /modules/services/nixos/qbittorrent.nix | |
| parent | d2747292dff98c64b974bdfe6b46bc62252298de (diff) | |
changes
Diffstat (limited to 'modules/services/nixos/qbittorrent.nix')
| -rw-r--r-- | modules/services/nixos/qbittorrent.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/services/nixos/qbittorrent.nix b/modules/services/nixos/qbittorrent.nix index af3cdbc..d0249d0 100644 --- a/modules/services/nixos/qbittorrent.nix +++ b/modules/services/nixos/qbittorrent.nix @@ -12,13 +12,13 @@ in { config = lib.mkIf cfg.enable { users.users."qbittorrent".extraGroups = ["fileserver"]; # torrent files go to /media/library - networking.firewall.allowedTCPPorts = [6882]; - networking.firewall.allowedUDPPorts = [6882]; + networking.firewall.allowedTCPPorts = [49252]; + networking.firewall.allowedUDPPorts = [49252]; services.qbittorrent = { enable = true; webuiPort = cfg.port; - torrentingPort = 6882; + torrentingPort = 49252; }; }; } |
