add zathura

This commit is contained in:
Glen Goodwin 2023-10-08 22:01:24 -04:00
parent 56ffc7220f
commit 3fa51bdbd3
3 changed files with 14 additions and 0 deletions

View file

@ -0,0 +1,11 @@
{ pkgs, config, ... }:
{
programs.zathura = {
enable = true;
extraConfig = ''
# Open document in fit-width mode by default
set adjust-open "best-fit"
'';
};
}