nixos-config/hosts/chunk/deluge.nix

16 lines
234 B
Nix
Raw Normal View History

2024-12-19 02:32:58 -05:00
{ ... }:
{
services.deluge = {
enable = true;
web = {
enable = true;
port = 8112;
};
};
services.caddy.virtualHosts."t.cy7.sh".extraConfig = ''
import common
reverse_proxy localhost:8112
'';
}