nixos-config/machines/fuuko/services/torrent.nix
Simon Bruder c0b743a65b
fuuko: Configure to work on-demand
This is so I can only enable it when I don’t mind it generating tons of
noise.
2022-10-07 22:20:29 +02:00

13 lines
229 B
Nix

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