Fix programs.zathura.options type and default
This commit is contained in:
parent
997705f058
commit
5761c00da1
|
@ -23,8 +23,8 @@ in
|
||||||
Zathura, a highly customizable and funtional document viewer
|
Zathura, a highly customizable and funtional document viewer
|
||||||
focused on keyboard interaction '';
|
focused on keyboard interaction '';
|
||||||
options = mkOption {
|
options = mkOption {
|
||||||
default = null;
|
default = {};
|
||||||
type = types.nullOr types.attrs;
|
type = with types; attrsOf (either str (either bool int));
|
||||||
description = ''
|
description = ''
|
||||||
Add :set command options to zathura and make them permanent.
|
Add :set command options to zathura and make them permanent.
|
||||||
Run <code>man zathura</code> to see the full list of options
|
Run <code>man zathura</code> to see the full list of options
|
||||||
|
|
Loading…
Reference in a new issue