You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
419 B
16 lines
419 B
2 years ago
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
home.packages = with pkgs; [ ranger ];
|
||
|
|
||
|
home.file = {
|
||
|
".config/ranger/plugins/ranger_devicons".source = pkgs.fetchFromGitHub {
|
||
|
owner = "alexanderjeurissen";
|
||
|
repo = "ranger_devicons";
|
||
|
rev = "49fe4753c89615a32f14b2f4c78bbd02ee76be3c";
|
||
|
sha256 = "YT7YFiTA2XtIoVzaVjUWMu6j4Nwo4iGzvOtjjWva/80=";
|
||
|
};
|
||
|
".config/ranger/rc.conf".text = "default_linemode devicons";
|
||
|
};
|
||
|
}
|