mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-15 12:54:15 +01:00
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;
|
||
|
};
|
||
|
};
|
||
|
}];
|
||
|
}
|