Files
dotfiles/nixos/tsuba/services/deluge.nix
uttarayan21 1bd0191b99 feat: deploy prowlarr in remote machine
but reverse proxy it from the local machine over tailscale
2025-07-15 03:29:19 +05:30

16 lines
279 B
Nix

{...}: {
services = {
deluge = {
enable = true;
web.enable = true;
group = "media";
};
caddy = {
virtualHosts."deluge.tsuba.darksailor.dev".extraConfig = ''
import hetzner
reverse_proxy localhost:8112
'';
};
};
}