From ef90ce7093f36a74523afbbf3714a466aa59bb79 Mon Sep 17 00:00:00 2001 From: squalus Date: Sun, 4 Dec 2022 13:10:19 -0800 Subject: [PATCH] nixos/grafana: add Admin to valid auto_assign_org_role values --- nixos/modules/services/monitoring/grafana.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/monitoring/grafana.nix b/nixos/modules/services/monitoring/grafana.nix index 9b3068796d8e..32fbb2b067e0 100644 --- a/nixos/modules/services/monitoring/grafana.nix +++ b/nixos/modules/services/monitoring/grafana.nix @@ -555,7 +555,7 @@ in { auto_assign_org_role = mkOption { description = lib.mdDoc "Default role new users will be auto assigned."; default = "Viewer"; - type = types.enum ["Viewer" "Editor"]; + type = types.enum ["Viewer" "Editor" "Admin"]; }; };