mirror of
https://github.com/NotAShelf/nvf.git
synced 2026-01-01 08:35:55 +00:00
noice: allow null option
This commit is contained in:
parent
dca3cb8f21
commit
3cdeba2cda
1 changed files with 3 additions and 1 deletions
|
|
@ -108,7 +108,8 @@ in {
|
||||||
options = {
|
options = {
|
||||||
view = mkOption {
|
view = mkOption {
|
||||||
description = "";
|
description = "";
|
||||||
type = str;
|
type = nullOr str;
|
||||||
|
default = null;
|
||||||
};
|
};
|
||||||
|
|
||||||
filter = mkOption {
|
filter = mkOption {
|
||||||
|
|
@ -119,6 +120,7 @@ in {
|
||||||
opts = mkOption {
|
opts = mkOption {
|
||||||
description = "";
|
description = "";
|
||||||
type = nullOr anything;
|
type = nullOr anything;
|
||||||
|
default = null;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue