nixos-config/modules/services/scrutiny.nix

19 lines
335 B
Nix
Raw Normal View History

2024-12-19 18:23:38 +01:00
{ ... }:
{
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/";
};
};
}