1
0
forked from extern/nix-config
donovanglover-nix-config/modules/zathura/default.nix
Donovan Glover 1ad4e2d4af
meta: Rename applications to modules
This is my attempt at putting all modules in one directory to avoid
having to remember whether a module was a part of applications/,
desktop/, or terminal/.
2023-06-05 11:37:06 -04:00

16 lines
276 B
Nix

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