9 lines
176 B
Nix
9 lines
176 B
Nix
|
{ ... }: {
|
||
|
xdg.configFile."ranger-rc-conf" = {
|
||
|
enable = true;
|
||
|
target = "./ranger/rc.conf";
|
||
|
text = ''
|
||
|
preview_images_method "kitty icat"
|
||
|
'';
|
||
|
};
|
||
|
}
|