diff options
| author | seth <[email protected]> | 2023-05-19 12:08:05 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-05-19 12:08:05 -0400 |
| commit | 029b07db8737aa7f0ca921c6993ff1e09dfe93eb (patch) | |
| tree | 6157b3fe1a4631da1a697cffd0752c313d629f9e | |
| parent | 8e5ce33b09eafb2b477d7b10f7a745b6189e0464 (diff) | |
p-body: make grafana public
| -rw-r--r-- | hosts/p-body/grafana.nix | 11 |
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; + }; }; }; } |
