aboutsummaryrefslogtreecommitdiff
path: root/modules/services/nixos/qbittorrent.nix
diff options
context:
space:
mode:
authorCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2026-07-29 06:54:49 -0500
committerCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2026-07-29 06:54:49 -0500
commite29dd8a2283399b7e046937340509d5aec4b52ba (patch)
treeaa679e70fe55cb620698ab1695eadf23f8a2cdba /modules/services/nixos/qbittorrent.nix
parentd2aecd69c17fa64305c07333686576152432993d (diff)
changes
Diffstat (limited to 'modules/services/nixos/qbittorrent.nix')
-rw-r--r--modules/services/nixos/qbittorrent.nix11
1 files changed, 9 insertions, 2 deletions
diff --git a/modules/services/nixos/qbittorrent.nix b/modules/services/nixos/qbittorrent.nix
index cc147b1..fe2831a 100644
--- a/modules/services/nixos/qbittorrent.nix
+++ b/modules/services/nixos/qbittorrent.nix
@@ -11,8 +11,10 @@ in {
extraGroups = ["fileserver"]; # torrent files go to /media/library
};
- networking.firewall.allowedTCPPorts = [49252];
- networking.firewall.allowedUDPPorts = [49252];
+ networking.firewall = {
+ allowedTCPPorts = [49252];
+ allowedUDPPorts = [49252];
+ };
services.qbittorrent = {
enable = true;
@@ -25,5 +27,10 @@ in {
tls internal
reverse_proxy 127.0.0.1:${toString cfg.port}
'';
+
+ collinux.services.glance.homelabServices."bittorrent" = {
+ url = "https://bittorrent.ganymede";
+ icon = "si:qbittorrent";
+ };
};
}