nixos-config/machines/saga/grafana/default.nix

14 lines
247 B
Nix
Raw Normal View History

2024-02-28 22:49:27 +01:00
{
services.grafana = {
enable = true;
settings = {
server = {
domain = "saga.datarift.nl";
enforce_domain = true;
http_addr = "0.0.0.0";
root_url = "https://saga.datarift.nl";
};
};
};
}