nixos-config/modules/home/zathura.nix

15 lines
224 B
Nix
Raw Permalink Normal View History

2024-10-14 12:03:05 +02:00
{ ... }:
{
programs.zathura = {
enable = true;
options = {
guioptions = "v";
adjust-open = "width";
statusbar-basename = true;
render-loading = false;
scroll-step = 50;
2024-10-14 12:03:05 +02:00
};
};
}