35 lines
568 B
Nix
35 lines
568 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
programs.yazi = {
|
|
enable = true;
|
|
shellWrapperName = "y";
|
|
settings = {
|
|
mgr = {
|
|
ratio = [1 1 6];
|
|
};
|
|
|
|
preview = {
|
|
max_width = 1000;
|
|
max_height = 900;
|
|
};
|
|
|
|
tasks = {
|
|
image_bound = [0 0];
|
|
};
|
|
|
|
keymap = {
|
|
mgr.prepend_keymap = [
|
|
{
|
|
on = "x";
|
|
for = "linux";
|
|
run = "shell -- hyprctl hyprpaper wallpaper ,%h";
|
|
desc = "Set hovered file as wallpaper";
|
|
}
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|