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

9 lines
176 B
Nix
Raw Normal View History

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