Add qBittorrent
Deploy / run-nix-build (push) Has been cancelled
Deploy / deploy-site (push) Has been cancelled
Lint / fmt (push) Has been cancelled
Lint / build-website (push) Has been cancelled
Lint / test (push) Has been cancelled

This commit is contained in:
Alexander
2026-04-26 15:51:43 +02:00
parent 7cc521933d
commit 8b4a4c67b2
6 changed files with 252 additions and 6 deletions
+11 -1
View File
@@ -5,7 +5,7 @@ title: Basic Example
This example does the following:
- Runs a jellyfin server and exposes it to the internet with HTTPS support.
- Runs the transmission torrent client through a vpn
- Runs a torrent client (Transmission or qBittorrent) through a VPN
- Runs all "*Arrs" supported by this module
```nix {.numberLines}
@@ -52,3 +52,13 @@ This example does the following:
jellyseerr.enable = true;
};
```
To use qBittorrent instead of Transmission, replace the `transmission` block with:
```nix {.numberLines}
qbittorrent = {
enable = true;
vpn.enable = true;
peerPort = 50000; # Set this to the port forwarded by your VPN
};
```