summaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
Diffstat (limited to 'hosts')
-rw-r--r--hosts/p-body/grafana.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/hosts/p-body/grafana.nix b/hosts/p-body/grafana.nix
index e557070..dcc97d1 100644
--- a/hosts/p-body/grafana.nix
+++ b/hosts/p-body/grafana.nix
@@ -4,11 +4,22 @@ in {
services.grafana = {
enable = true;
settings = {
+ "auth.anonymous" = {
+ enabled = true;
+ hide_version = true;
+ org_name = "getchoosystems";
+ org_role = "Viewer";
+ };
+
server = {
http_addr = "127.0.0.1";
http_port = 4000;
domain = "grafana.${domain}";
};
+
+ feature_toggles = {
+ publicDashboards = true;
+ };
};
};
}