nix-config/features/server/services/grafana.nix

16 lines
283 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_port = 3000;
};
};
};
2024-10-30 17:44:54 +01:00
services.caddy.virtualHosts."http://grafana.sisyphe.normandy.hypervirtual.world".extraConfig = ''
reverse_proxy :3000
'';
2024-07-15 16:27:23 +02:00
}