forked from extern/nix-config
15 lines
275 B
Nix
15 lines
275 B
Nix
|
{
|
||
|
home-manager.sharedModules = [{
|
||
|
programs.zathura = {
|
||
|
enable = true;
|
||
|
options = {
|
||
|
guioptions = "v";
|
||
|
adjust-open = "width";
|
||
|
statusbar-basename = true;
|
||
|
render-loading = false;
|
||
|
scroll-step = 120;
|
||
|
};
|
||
|
};
|
||
|
}];
|
||
|
}
|