nix/home-manager/common/software/cli/ranger.nix

11 lines
198 B
Nix
Raw Normal View History

2023-08-30 15:51:29 +02:00
{ ... }: {
2024-05-05 09:09:49 +02:00
xdg.configFile."ranger-rc-conf" = {
2023-08-30 15:51:29 +02:00
enable = true;
target = "./ranger/rc.conf";
text = ''
2024-05-05 09:09:49 +02:00
set preview_images true
set preview_images_method kitty
2023-08-30 15:51:29 +02:00
'';
2024-05-05 09:09:49 +02:00
};
}