Move ranger configuration
All checks were successful
/ check (push) Successful in 1m49s

This commit is contained in:
Oliver Davies 2025-07-27 22:07:00 +01:00
parent cff6bf0167
commit 8d7d6115e3
5 changed files with 3 additions and 18 deletions

View file

@ -8,7 +8,6 @@
./gtk.nix
./media/handbrake.nix
./node.nix
./ranger.nix
./redshift.nix
./screenkey.nix
./starship.nix

View file

@ -1,14 +0,0 @@
{ config, lib, ... }:
with lib;
let
cfg = config.features.cli.ranger;
in
{
options.features.cli.ranger.enable = mkEnableOption "Enable ranger";
config = mkIf cfg.enable {
programs.ranger.enable = true;
};
}