mirror of
https://github.com/librephoenix/nixos-config
synced 2025-07-06 06:52:13 +05:30
Added ranger config inside its own module
This commit is contained in:
parent
cfb1187e76
commit
e7d4c1192b
8 changed files with 3728 additions and 4 deletions
26
user/app/ranger/ranger.nix
Normal file
26
user/app/ranger/ranger.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
ranger
|
||||
xdragon
|
||||
];
|
||||
home.file.".config/ranger/rc.conf".source = ./rc.conf;
|
||||
home.file.".config/ranger/rifle.conf".source = ./rifle.conf;
|
||||
home.file.".config/ranger/scope.sh" = {
|
||||
source = ./scope.sh;
|
||||
executable = true;
|
||||
};
|
||||
home.file.".config/ranger/commands.py" = {
|
||||
source = ./commands.py;
|
||||
executable = true;
|
||||
};
|
||||
home.file.".config/ranger/commands_full.py" = {
|
||||
source = ./commands_full.py;
|
||||
executable = true;
|
||||
};
|
||||
home.file.".config/ranger/colorschemes/hail.py" = {
|
||||
source = ./colorschemes/hail.py;
|
||||
executable = true;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue