15 lines
242 B
Nix
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;
|
|
};
|
|
};
|
|
}
|