nix-config/modules/home-manager/cli/ranger.nix
Oliver Davies 54b43e4203
All checks were successful
/ check (push) Successful in 1m21s
Remove features
2025-05-03 16:50:27 +01:00

14 lines
204 B
Nix

{ config, lib, ... }:
with lib;
let
cfg = config.cli.ranger;
in
{
options.cli.ranger.enable = mkEnableOption "Enable ranger";
config = mkIf cfg.enable {
programs.ranger.enable = true;
};
}