This repository has been archived on 2026-01-14. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
deprecated_nixos/home/zathura.nix
T
2026-01-02 20:43:09 +01:00

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";
};
}