nix-config/modules/home-manager/cli/ranger.nix

15 lines
222 B
Nix
Raw Normal View History

{ config, lib, ... }:
with lib;
let
2025-07-09 08:00:00 +01:00
cfg = config.features.cli.ranger;
in
{
2025-07-09 08:00:00 +01:00
options.features.cli.ranger.enable = mkEnableOption "Enable ranger";
config = mkIf cfg.enable {
programs.ranger.enable = true;
};
}