Use modules folder

This commit is contained in:
Elnu 2023-01-25 20:15:06 -08:00
parent e42f845f09
commit 2903676336
46 changed files with 21 additions and 21 deletions

View file

@ -0,0 +1,15 @@
{ 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";
};
}