nix-config/features/grafana.nix
2024-07-15 16:46:14 +02:00

14 lines
170 B
Nix

{ ... }:
{
services.grafana = {
enable = true;
settings = {
server = {
http_addr = "127.0.0.1";
http_port = 3000;
};
};
};
}