nix-config/features/grafana.nix

14 lines
178 B
Nix
Raw Normal View History

2024-07-15 16:50:14 +02:00
{ config, ... }:
2024-07-15 16:27:23 +02:00
{
services.grafana = {
enable = true;
settings = {
server = {
http_addr = "127.0.0.1";
http_port = 3000;
};
};
};
}