feat(zathura): add module

This commit is contained in:
Michael Thomas 2024-01-22 10:56:13 -05:00
parent 67ecabd538
commit 04768bb6c9
2 changed files with 13 additions and 0 deletions

View File

@ -1,5 +1,7 @@
{pkgs, ...}: {
imports = [
../../modules/applications/zathura.nix
../../modules/zsh.nix
../../modules/dev.nix
../../modules/emacs.nix

View File

@ -0,0 +1,11 @@
{...}: {
programs.zathura = {
enable = true;
options = {
scroll-page-aware = true;
smooth-scroll = true;
scroll-full-overlap = "0.01";
scroll-step = 100;
};
};
}