14 lines
284 B
Nix
14 lines
284 B
Nix
{ pkgs, ... }: {
|
|
programs.zathura = {
|
|
enable = true;
|
|
options = {
|
|
selection-clipboard = "clipboard";
|
|
adjust-open = "best-fit";
|
|
page-h-padding = 10;
|
|
page-v-padding = 10;
|
|
recolor = true;
|
|
};
|
|
extraConfig = "include zathurarc-colors";
|
|
};
|
|
}
|