From 04768bb6c965a384893eed8cb6c7b66e54733294 Mon Sep 17 00:00:00 2001 From: Michael Thomas Date: Mon, 22 Jan 2024 10:56:13 -0500 Subject: [PATCH] feat(zathura): add module --- user/environments/mac/home.nix | 2 ++ user/modules/applications/zathura.nix | 11 +++++++++++ 2 files changed, 13 insertions(+) create mode 100644 user/modules/applications/zathura.nix diff --git a/user/environments/mac/home.nix b/user/environments/mac/home.nix index 670efbd..ecf4df0 100644 --- a/user/environments/mac/home.nix +++ b/user/environments/mac/home.nix @@ -1,5 +1,7 @@ {pkgs, ...}: { imports = [ + ../../modules/applications/zathura.nix + ../../modules/zsh.nix ../../modules/dev.nix ../../modules/emacs.nix diff --git a/user/modules/applications/zathura.nix b/user/modules/applications/zathura.nix new file mode 100644 index 0000000..2da548a --- /dev/null +++ b/user/modules/applications/zathura.nix @@ -0,0 +1,11 @@ +{...}: { + programs.zathura = { + enable = true; + options = { + scroll-page-aware = true; + smooth-scroll = true; + scroll-full-overlap = "0.01"; + scroll-step = 100; + }; + }; +}