diff --git a/modules/home/default.nix b/modules/home/default.nix index 9cd7ca5..cd82aaf 100644 --- a/modules/home/default.nix +++ b/modules/home/default.nix @@ -7,6 +7,7 @@ ++ [(import ./kitty.nix)] # terminal ++ [(import ./mako.nix)] # notification deamon ++ [(import ./nvim.nix)] # neovim editor + ++ [(import ./zathura.nix)] # neovim editor ++ [(import ./packages.nix)] # other packages ++ [(import ./scripts/scripts.nix)] # personal scripts ++ [(import ./swaylock.nix)] # lock screen diff --git a/modules/home/zathura.nix b/modules/home/zathura.nix new file mode 100644 index 0000000..557595e --- /dev/null +++ b/modules/home/zathura.nix @@ -0,0 +1,14 @@ +{ ... }: +{ + programs.zathura = { + enable = true; + + options = { + guioptions = "v"; + adjust-open = "width"; + statusbar-basename = true; + render-loading = false; + scroll-step = 920; + }; + }; +}