nixos-config/modules/home/zathura.nix

14 lines
224 B
Nix

{ ... }:
{
programs.zathura = {
enable = true;
options = {
guioptions = "v";
adjust-open = "width";
statusbar-basename = true;
render-loading = false;
scroll-step = 50;
};
};
}