adyya-flake/services/monitoring/grafana.mod.nix
Ittihadyya 66fe419c0f
Some checks failed
/ Check formatting (push) Failing after 1s
initial commit for monitoring and formatting
2024-12-20 12:59:50 +02:00

32 lines
No EOL
685 B
Nix

{
glucose.modules = [
{(
services.grafana = {
enable = true;
dataDir = "/var/services/grafana";
# declarativePlugins = null;
settings = {
# analytics = {};
# database = {};
# paths = {};
# security = {};
server = {
root_url = "https://grf.collective-conciousness.monster";
enable_gzip = true;
http_addr = "127.0.0.1";
http_port = 6700;
};
# smtp = {};
# users = {};
};
/*provision = {
alerting = {};
dashboards = {};
datasources = {};
};*/
};
)}
];
}