nixos/home/system/zathura/default.nix
2024-10-15 15:02:07 +02:00

15 lines
242 B
Nix

# Zathura is a PDF viewer
{
programs.zathura = {
enable = true;
options = {
guioptions = "v";
adjust-open = "width";
statusbar-basename = true;
render-loading = false;
scroll-step = 120;
};
};
}