Compare commits

...
Sign in to create a new pull request.

2 commits

2 changed files with 15 additions and 0 deletions

View file

@ -7,6 +7,8 @@
networking.hostName = "testvm";
systemd.services.matrix-hookshot.enable = lib.mkForce false;
services = {
# Sets the base domain for nginx to a local domain so that we can
# easily test locally with the VM.

View file

@ -57,6 +57,19 @@ in
access = "proxy";
}
];
alerting.contactPoints.settings.contactPoints = [
{
name = "ntfy";
receivers = [
{
uid = "ntfy";
type = "webhook";
settings.url = "http://${config.services.ntfy-sh.settings.listen-http}/local-alerts?template=grafana";
}
];
}
];
};
};