infrastructure/nixos/hosts/olympus/bastion/containers/monitoring/grafana.nix
2023-12-30 14:47:12 +01:00

10 lines
218 B
Nix

{ config, pkgs, ... }: {
services.grafana = {
enable = true;
domain = "grafana.olympus";
port = 80;
addr = "0.0.0.0";
};
networking.firewall.allowedTCPPorts = [ config.services.grafana.port ];
}