blob: 8e8ef1d7a160b623ea55863d485d06b27265c71f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{ pkgs, ... }:
let
configFiles = {
"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;
};
in
{
home.packages = [ pkgs.ranger ];
xdg.configFile = {
inherit (configFiles);
};
}
|