nixos/services/grafana/default.nix
Evie Litherland-Smith ef73c2e417 Customise dashboard
Add hydra for controlling emms
2023-10-27 08:57:48 +01:00

16 lines
269 B
Nix

{ config, lib, pkgs, ... }:
{
imports = [ ../traefik/grafana.nix ];
services.grafana = {
enable = true;
settings = {
server = {
http_addr = "127.0.0.1";
http_port = 3000;
domain = "grafana.xenia.me.uk";
};
};
};
}