nixos/grafana: add Admin to valid auto_assign_org_role values

This commit is contained in:
squalus 2022-12-04 13:10:19 -08:00
parent c94cdd0978
commit ef90ce7093

View file

@ -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"];
};
};