Replace Uptime Kuma with Gatus for declarative uptime monitoring
All checks were successful
Check Flake / check-flake (push) Successful in 2m4s

Gatus is configured entirely via YAML (mapped from Nix attrsets),
making nix-config the single source of truth for all monitoring
config instead of Uptime Kuma's web UI/SQLite database.
This commit is contained in:
2026-02-22 17:30:03 -08:00
parent 0589ca5748
commit 288a2841aa
5 changed files with 157 additions and 39 deletions

View File

@@ -114,6 +114,6 @@
services.ntfy-sh.hostname = "ntfy.neet.dev";
# uptime monitoring
services.uptime-kuma.enable = true;
services.uptime-kuma.hostname = "status.neet.dev";
services.gatus.enable = true;
services.gatus.hostname = "status.neet.dev";
}