feat(apps): add zathura document viewer with matugen theming

This commit is contained in:
kenji
2026-01-14 16:14:17 -06:00
parent cfcf9d6f3a
commit ad8b59f314
5 changed files with 71 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
{ pkgs, ... }:
{
programs.zathura = {
enable = true;
options = {
selection-clipboard = "clipboard";
adjust-open = "best-fit";
pages-per-row = 1;
scroll-page-aware = "true";
scroll-full-overlap = "0.01";
scroll-step = 100;
zoom-min = 10;
recolor = true;
};
extraConfig = "include zathura-matugen";
};
xdg.mimeApps = {
enable = true;
defaultApplications = {
"application/pdf" = "org.pwmt.zathura.desktop";
};
};
}