feat: adds zathura as a pdf reader

This commit is contained in:
Ahwx 2024-10-14 12:03:05 +02:00
parent 9a74ba2ed4
commit e9fa95156e
2 changed files with 15 additions and 0 deletions

14
modules/home/zathura.nix Normal file
View file

@ -0,0 +1,14 @@
{ ... }:
{
programs.zathura = {
enable = true;
options = {
guioptions = "v";
adjust-open = "width";
statusbar-basename = true;
render-loading = false;
scroll-step = 920;
};
};
}