From e9fa95156ebbb572cc3b852c163c2990a42a9635 Mon Sep 17 00:00:00 2001 From: Ahwx Date: Mon, 14 Oct 2024 12:03:05 +0200 Subject: [PATCH] feat: adds zathura as a pdf reader --- modules/home/default.nix | 1 + modules/home/zathura.nix | 14 ++++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 modules/home/zathura.nix 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; + }; + }; +}