Add ranger

This commit is contained in:
Oliver Davies 2025-03-19 14:08:04 +00:00
parent 53ed6535fa
commit 59382508d8
3 changed files with 12 additions and 1 deletions
nix/home/opdavies

View file

@ -55,8 +55,8 @@ in
imports =
[
../common
./modules/node.nix
shared-config
./modules
]
++ pkgs.lib.optionals (!headless) [
./desktop

View file

@ -0,0 +1,6 @@
{
imports = [
./node.nix
./ranger.nix
];
}

View file

@ -0,0 +1,5 @@
{
programs.ranger = {
enable = true;
};
}