feat: adds zathura as a pdf reader

This commit is contained in:
Ahwx 2024-10-14 12:03:05 +02:00
parent 9a74ba2ed4
commit e9fa95156e
2 changed files with 15 additions and 0 deletions

View file

@ -7,6 +7,7 @@
++ [(import ./kitty.nix)] # terminal ++ [(import ./kitty.nix)] # terminal
++ [(import ./mako.nix)] # notification deamon ++ [(import ./mako.nix)] # notification deamon
++ [(import ./nvim.nix)] # neovim editor ++ [(import ./nvim.nix)] # neovim editor
++ [(import ./zathura.nix)] # neovim editor
++ [(import ./packages.nix)] # other packages ++ [(import ./packages.nix)] # other packages
++ [(import ./scripts/scripts.nix)] # personal scripts ++ [(import ./scripts/scripts.nix)] # personal scripts
++ [(import ./swaylock.nix)] # lock screen ++ [(import ./swaylock.nix)] # lock screen

14
modules/home/zathura.nix Normal file
View file

@ -0,0 +1,14 @@
{ ... }:
{
programs.zathura = {
enable = true;
options = {
guioptions = "v";
adjust-open = "width";
statusbar-basename = true;
render-loading = false;
scroll-step = 920;
};
};
}