nix-config/applications/zathura/default.nix

15 lines
275 B
Nix
Raw Normal View History

{
home-manager.sharedModules = [{
programs.zathura = {
enable = true;
options = {
guioptions = "v";
adjust-open = "width";
statusbar-basename = true;
render-loading = false;
scroll-step = 120;
};
};
}];
}