10 lines
198 B
Nix
10 lines
198 B
Nix
{ ... }: {
|
|
xdg.configFile."ranger-rc-conf" = {
|
|
enable = true;
|
|
target = "./ranger/rc.conf";
|
|
text = ''
|
|
set preview_images true
|
|
set preview_images_method kitty
|
|
'';
|
|
};
|
|
}
|