nixos/system/home/zathura/default.nix

16 lines
275 B
Nix
Raw Normal View History

{ ... }:
{
# TODO add emacs keybinds
programs.zathura = {
enable = true;
options = {
adjust-open = "best-fit";
database = "null";
dbus-service = true;
sandbox = "normal";
scroll-page-aware = true;
synctex = true;
};
};
}