From 48afd162f3f4fce7edbc03846f61c6116538fd32 Mon Sep 17 00:00:00 2001 From: Adam Washington Date: Fri, 14 Sep 2018 10:06:52 +0100 Subject: [PATCH] Fix programs.zathura.options description and example --- modules/programs/zathura.nix | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/modules/programs/zathura.nix b/modules/programs/zathura.nix index 0dd98b88..18c96505 100644 --- a/modules/programs/zathura.nix +++ b/modules/programs/zathura.nix @@ -26,12 +26,15 @@ in 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 - ''; - example = literalExample '' - {default-bg = "#000000"; default-fg = "#FFFFFF";} + Add :set command options to zathura and make them permanent. + See + + zathurarc + 5 + + to see the full list of options ''; + example = {default-bg = "#000000"; default-fg = "#FFFFFF";}; }; extraConfig = mkOption { type = types.lines;