nixos-config/machines/fuuko/services/torrent.nix
Simon Bruder 472ff64011
fuuko: Add SSD for hot storage
Adding a new PCIe device changes the names of the network interfaces, so
they need to be adapted.
2023-06-28 23:13:57 +02:00

13 lines
233 B
Nix

{
sbruder.qbittorrent = {
enable = true;
downloadDir = "/data/hot/torrent";
fqdn = "torrent.sbruder.de";
};
services.nginx.virtualHosts."torrent.sbruder.de" = {
enableACME = false;
forceSSL = false;
};
}