blob: 4dbced5fbdf70366d3dd6b6881f34b3172e35d3c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{ pkgs, ... }:
{
home.packages = with pkgs; [ ranger wl-clipboard ];
xdg.configFile = {
"ranger/rc.conf".text = builtins.readFile ./rc.conf;
"ranger/rifle.conf".text = builtins.readFile ./rifle.conf;
"ranger/scope.sh".text = builtins.readFile ./scope.sh;
"ranger/commands.py".source = ./commands.py;
"ranger/plugins".source = ./plugins;
};
}
|