nixos-config/modules/services/scrutiny.nix

17 lines
374 B
Nix
Raw Normal View History

{ config, ... }: {
2024-12-19 18:23:38 +01:00
services.scrutiny = {
enable = true;
collector.enable = true;
settings.web.listen.port = 8181;
settings.notify.urls = [
"ntfy://${config.liv.variables.ntfyURL}/${config.networking.hostName}"
2024-12-19 18:23:38 +01:00
];
};
# services.nginx.virtualHosts."" = {
# locations."/" = {
# proxyPass = "http://localhost:8181/";
# };
# };
2024-12-19 18:23:38 +01:00
}