mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-08 01:14:01 +01:00
0151098d47
Notable changes include upgrading to Plasma 6 in the DE specialization as well as updating the pqiv config to work with the latest home-manger change.
23 lines
442 B
Nix
23 lines
442 B
Nix
{
|
|
programs.pqiv = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
options = {
|
|
lazy-load = 1;
|
|
hide-info-box = 1;
|
|
scale-mode-screen-fraction = 1;
|
|
background-pattern = "black";
|
|
disable-backends = "archive,archive_cbx,libav,poppler,spectre";
|
|
thumbnail-size = "256x256";
|
|
command-1 = "thunar";
|
|
};
|
|
};
|
|
|
|
extraConfig = ''
|
|
[actions]
|
|
set_cursor_auto_hide(1)
|
|
'';
|
|
};
|
|
}
|