From 5761c00da1a4b152b89d667b0845cc9b3e698dff Mon Sep 17 00:00:00 2001 From: Adam Washington Date: Fri, 14 Sep 2018 10:06:27 +0100 Subject: [PATCH] Fix programs.zathura.options type and default --- modules/programs/zathura.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/programs/zathura.nix b/modules/programs/zathura.nix index 3a3eb9dc..0dd98b88 100644 --- a/modules/programs/zathura.nix +++ b/modules/programs/zathura.nix @@ -23,8 +23,8 @@ in Zathura, a highly customizable and funtional document viewer focused on keyboard interaction ''; options = mkOption { - default = null; - type = types.nullOr types.attrs; + default = {}; + type = with types; attrsOf (either str (either bool int)); description = '' Add :set command options to zathura and make them permanent. Run man zathura to see the full list of options