infrastructure/nixos/hosts/olympus/bastion/containers/monitoring/grafana.nix

11 lines
218 B
Nix
Raw Normal View History

2023-12-30 14:47:12 +01:00
{ config, pkgs, ... }: {
services.grafana = {
enable = true;
domain = "grafana.olympus";
port = 80;
addr = "0.0.0.0";
};
networking.firewall.allowedTCPPorts = [ config.services.grafana.port ];
}