noice: allow null option

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

View File

@ -108,7 +108,8 @@ in {
options = {
view = mkOption {
description = "";
type = str;
type = nullOr str;
default = null;
};
filter = mkOption {
@ -119,6 +120,7 @@ in {
opts = mkOption {
description = "";
type = nullOr anything;
default = null;
};
};
});