noice: add descriptions for some options

This commit is contained in:
Pei Yang Ching 2024-06-27 10:43:42 +02:00
parent 44c8acdffa
commit df565e3416
1 changed files with 3 additions and 3 deletions

View File

@ -107,18 +107,18 @@ in {
type = listOf (submodule { type = listOf (submodule {
options = { options = {
view = mkOption { view = mkOption {
description = ""; description = "how this route is viewed";
type = nullOr str; type = nullOr str;
default = null; default = null;
}; };
filter = mkOption { filter = mkOption {
description = ""; description = "a filter for messages matching this route";
type = anything; type = anything;
}; };
opts = mkOption { opts = mkOption {
description = ""; description = "options for the view and the route";
type = nullOr anything; type = nullOr anything;
default = null; default = null;
}; };