blob: 8437e80ee19ffd4db7827e14bdee5d7c4418f09c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{ lib, ... }: {
programs.zathura = {
enable = true;
mappings = {
"f" = "toggle_fullscreen";
"[fullscreen] f" = "toggle_fullscreen";
};
options = {
font = lib.mkDefault "Sans";
statusbar-basename = true;
selection-clipboard = "clipboard";
database = "sqlite";
};
};
}
|