10 lines
146 B
Nix
10 lines
146 B
Nix
|
{ pkgs, ... }: {
|
||
|
xdg.configFile."ranger-rc-conf" = {
|
||
|
enable = true;
|
||
|
target = "./xfce4/test.conf";
|
||
|
text = ''
|
||
|
|
||
|
'';
|
||
|
};
|
||
|
}
|