about summary refs log tree commit diff
path: root/hosts/common/server/grafana.nix
blob: b2d78414e76f6623e307a3e983b69a020aeee5a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
{ config, lib, pkgs, ... }:

{
  grafana = {
    enable = true;
    # Bind to all interfaces.
    addr = "";
  };
}