working system

This commit is contained in:
Vali 2024-07-15 09:27:55 +02:00
commit b4585b3e87
14 changed files with 76 additions and 18 deletions

View file

@ -6,7 +6,7 @@
}:
with lib; let
cfg = config.modules.programs.zathura;
username = config.modules.other.system.username;
inherit (config.modules.other.system) username;
catppuccin = pkgs.fetchFromGitHub {
owner = "catppuccin";
repo = "zathura";
@ -24,7 +24,16 @@ in {
extraConfig = ''
include catppuccin-mocha
'';
options = {selection-clipboard = "clipboard";};
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";
guioptions = "none";
};
};
};
};