infrastructure/modules/nixos/monitoring/ingest/grafana.nix
2024-05-17 18:58:39 -07:00

11 lines
217 B
Nix

_: {
services.grafana = {
#enable = true;
settings.server = {
domain = "gensokyo.zone";
http_port = 9092;
http_addr = "0.0.0.0";
root_url = "https://mon.gensokyo.zone";
};
};
}