about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorChristian Kögler <ck3d@gmx.de>2022-09-09 17:55:26 +0200
committerGitHub <noreply@github.com>2022-09-09 17:55:26 +0200
commit6ee982a34eb36b3684c6c5de498ba037d7f64ce4 (patch)
tree21e6368db4a42f5fd36d2a975b6f54272b0e1ee5 /nixos
parent0ee767138319b0b16a996aa40bc762debc14236e (diff)
parent3c1c405e72cd3e7232c5cea2f9ec4d9158bca9af (diff)
downloadnixlib-6ee982a34eb36b3684c6c5de498ba037d7f64ce4.tar
nixlib-6ee982a34eb36b3684c6c5de498ba037d7f64ce4.tar.gz
nixlib-6ee982a34eb36b3684c6c5de498ba037d7f64ce4.tar.bz2
nixlib-6ee982a34eb36b3684c6c5de498ba037d7f64ce4.tar.lz
nixlib-6ee982a34eb36b3684c6c5de498ba037d7f64ce4.tar.xz
nixlib-6ee982a34eb36b3684c6c5de498ba037d7f64ce4.tar.zst
nixlib-6ee982a34eb36b3684c6c5de498ba037d7f64ce4.zip
Merge pull request #190498 from eskytthe/grafana-module-fix-text
nixos/grafana: fix description text error
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/monitoring/grafana.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/nixos/modules/services/monitoring/grafana.nix b/nixos/modules/services/monitoring/grafana.nix
index dd99fa3ddccd..fd3418b8f6bd 100644
--- a/nixos/modules/services/monitoring/grafana.nix
+++ b/nixos/modules/services/monitoring/grafana.nix
@@ -628,18 +628,18 @@ in {
         };
         allowedDomains = mkOption {
           description = lib.mdDoc ''
-            To limit access to authenticated users who are members of one or more groups,
-            set allowedGroups to a comma- or space-separated list of group object IDs.
-            You can find object IDs for a specific group on the Azure portal.
+            Limits access to users who belong to specific domains.
+            Separate domains with space or comma.
           '';
           default = "";
           type = types.str;
         };
         allowedGroups = mkOption {
           description = lib.mdDoc ''
-            Limits access to users who belong to specific domains.
-            Separate domains with space or comma.
-          '';
+            To limit access to authenticated users who are members of one or more groups,
+            set allowedGroups to a comma- or space-separated list of group object IDs.
+            You can find object IDs for a specific group on the Azure portal.
+            '';
           default = "";
           type = types.str;
         };