nix-config/hosts/sisyphe/features/multimedia/sabnzbd.nix
2025-04-11 20:50:43 +02:00

22 lines
365 B
Nix

{ config, pkgs, ... }:
{
services.sabnzbd = {
enable = true;
openFirewall = true;
};
services.caddy.virtualHosts."http://nzb.normandy.sisyphe.hypervirtual.world".extraConfig = ''
reverse_proxy 8080
'';
services.prometheus.exporters.sabnzbd = {
enable = true;
servers = [
{
sisyphe = {
};
}
];
};
}