Add monitoring host

This commit is contained in:
2024-12-01 01:51:29 +01:00
parent 5db87052d3
commit 3c3eaaa042
9 changed files with 160 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
{ pkgs, ... }:
{
services.grafana = {
enable = true;
settings = {
server = {
http_addr = "";
};
};
};
}