mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-08-08 06:30:18 +02:00
24 lines
393 B
Nix
24 lines
393 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 = {
|
|
|
|
};
|
|
}
|
|
];
|
|
};
|
|
*/
|
|
}
|