mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-06-11 04:06:39 +02:00
24 lines
484 B
Nix
24 lines
484 B
Nix
{
|
|
programs.pqiv = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
options = {
|
|
lazy-load = true;
|
|
hide-info-box = true;
|
|
scale-mode-screen-fraction = true;
|
|
background-pattern = "black";
|
|
disable-backends = "archive,archive_cbx,libav,poppler,spectre";
|
|
thumbnail-size = "256x256";
|
|
command-1 = "thunar";
|
|
command-2 = "trash put";
|
|
};
|
|
};
|
|
|
|
extraConfig = ''
|
|
[actions]
|
|
set_cursor_auto_hide(1)
|
|
'';
|
|
};
|
|
}
|