feat: add scrutiny

This commit is contained in:
Ahwx 2024-12-19 18:23:38 +01:00
parent bfceb118ca
commit 8fc79e3c10

View file

@ -0,0 +1,18 @@
{ ... }:
{
services.scrutiny = {
enable = true;
collector.enable = true;
settings.web.listen.port = 8181;
settings.notify.urls = [
"ntfy://notify.liv.town/violet"
];
};
services.nginx.virtualHosts."scrutiny.liv.town" = {
locations."/" = {
proxyPass = "http://localhost:8181/";
};
};
}