mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-01-19 05:39:34 +01:00
18 lines
312 B
Nix
18 lines
312 B
Nix
|
{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
|
||
|
]
|
||
|
};*/
|
||
|
}
|