{ config, lib, pkgs, ... }: { services.grafana = { enable = true; # Bind to all interfaces. addr = ""; security.adminUser = "fcuny"; services.grafana.provision.datasources = [{ name = "prometheus"; isDefault = true; type = "prometheus"; url = "http://localhost:9090"; }]; }; }