bitmagnet

This commit is contained in:
2024-11-13 20:34:23 -05:00
parent ff99fb637a
commit e53feb78e4
7 changed files with 61 additions and 11 deletions

View File

@@ -2,6 +2,7 @@
pkgs,
config,
service_configs,
lib,
...
}:
{
@@ -17,12 +18,23 @@
from = config.services.qbittorrent.webuiPort;
to = config.services.qbittorrent.webuiPort;
}
{
from = service_configs.ports.bitmagnet;
to = service_configs.ports.bitmagnet;
}
];
openVPNPorts = [
{
port = config.services.qbittorrent.webuiPort;
protocol = "both";
}
{
# TODO! make an issue about this variable
port = service_configs.ports.bitmagnet;
protocol = "both";
}
];
};