mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 00:03:55 +01:00
3a46bb767f
Fixes an issue where the latest version of pqiv would become unresponsive when browsing images in directories with large subdirectories. Also makes selecting multiple images work again. See: https://github.com/phillipberndt/pqiv/pull/204
19 lines
389 B
Nix
19 lines
389 B
Nix
{
|
|
programs.pqiv = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
options = {
|
|
lazy-load = 1;
|
|
hide-info-box = 1;
|
|
scale-mode-screen-fraction = 1;
|
|
max-depth = 0;
|
|
background-pattern = "black";
|
|
disable-backends = "archive,archive_cbx,libav,poppler,spectre";
|
|
thumbnail-size = "256x256";
|
|
command-1 = "thunar";
|
|
};
|
|
};
|
|
};
|
|
}
|