summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeth Flynn <[email protected]>2025-02-15 01:10:15 -0500
committerSeth Flynn <[email protected]>2025-02-15 01:18:39 -0500
commit3f7ff239c1df6957b5214b0bcc6b48d23837ed2b (patch)
tree135663f98d87d59437075a45ef41f347d2b91cac
parent539f23daf05c81d4239b068254ff61598376da9e (diff)
nixos/grafana: allow anons to view
-rw-r--r--modules/nixos/mixins/grafana.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/nixos/mixins/grafana.nix b/modules/nixos/mixins/grafana.nix
index 3385107..fde4535 100644
--- a/modules/nixos/mixins/grafana.nix
+++ b/modules/nixos/mixins/grafana.nix
@@ -15,7 +15,10 @@
reporting_enabled = false;
};
- "auth.anonymous".enable = true;
+ "auth.anonymous" = {
+ enable = true;
+ org_role = "Viewer";
+ };
server = {
http_port = 6000;