nix-config/hosts/sisyphe/features/multimedia/sabnzbd.nix

18 lines
312 B
Nix
Raw Normal View History

2024-12-27 13:52:47 +01:00
{config, pkgs, ...}:
{
services.sabnzbd = {
enable = true;
};
services.caddy.virtualHosts."http://sabnzbd.normandy.sisyphe.hypervirtual.world".extraConfig = ''
reverse_proxy 8080
'';
/*
services.prometheus.exporters.sabnzbd = {
enable = true;
servers = [
localhost
]
};*/
}