mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-04-02 11:12:09 +02:00
16 lines
285 B
Nix
16 lines
285 B
Nix
# TODO: Misc section with VLC, Zathura etc
|
|
# Zathura is a PDF viewer
|
|
{
|
|
programs.zathura = {
|
|
enable = true;
|
|
|
|
options = {
|
|
guioptions = "v";
|
|
adjust-open = "width";
|
|
statusbar-basename = true;
|
|
render-loading = false;
|
|
scroll-step = 120;
|
|
};
|
|
};
|
|
}
|