From df565e3416413fc2f18a653e6730ad2de4e85b6a Mon Sep 17 00:00:00 2001 From: Pei Yang Ching <59727193+horriblename@users.noreply.github.com> Date: Thu, 27 Jun 2024 10:43:42 +0200 Subject: [PATCH] noice: add descriptions for some options --- modules/plugins/ui/noice/noice.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/plugins/ui/noice/noice.nix b/modules/plugins/ui/noice/noice.nix index 0fb52cd..bf16e3f 100644 --- a/modules/plugins/ui/noice/noice.nix +++ b/modules/plugins/ui/noice/noice.nix @@ -107,18 +107,18 @@ in { type = listOf (submodule { options = { view = mkOption { - description = ""; + description = "how this route is viewed"; type = nullOr str; default = null; }; filter = mkOption { - description = ""; + description = "a filter for messages matching this route"; type = anything; }; opts = mkOption { - description = ""; + description = "options for the view and the route"; type = nullOr anything; default = null; };