Compare commits

..

3 Commits

Author SHA1 Message Date
Ching Pei Yang ffcbd6a594
Merge df565e3416 into b0af809b95 2024-06-27 08:43:47 +00:00
Pei Yang Ching df565e3416 noice: add descriptions for some options 2024-06-27 10:43:42 +02:00
Pei Yang Ching 44c8acdffa noice: allow null option 2024-06-27 10:29:18 +02:00
1 changed files with 6 additions and 4 deletions

View File

@ -107,18 +107,20 @@ in {
type = listOf (submodule { type = listOf (submodule {
options = { options = {
view = mkOption { view = mkOption {
description = ""; description = "how this route is viewed";
type = str; type = nullOr str;
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;
}; };
}; };
}); });