1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-30 18:38:31 +02:00
home-manager/modules/programs/ripgrep.nix

52 lines
1.4 KiB
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
with lib;
let cfg = config.programs.ripgrep;
in {
meta.maintainers = [ hm.maintainers.pedorich-n ];
options = {
programs.ripgrep = {
enable = mkEnableOption "Ripgrep";
package = mkPackageOption pkgs "ripgrep" { };
configDir = mkOption {
type = types.str;
default = "${config.xdg.configHome}/ripgrep";
defaultText =
literalExpression ''"''${config.xdg.configHome}/ripgrep"'';
description = ''
Directory where the <filename>ripgreprc</filename> file will be stored.
'';
};
arguments = mkOption {
type = with types; listOf str;
default = [ ];
example = [ "--max-columns-preview" "--colors=line:style:bold" ];
description = ''
List of arguments to pass to ripgrep. Each item is given to ripgrep as a single command line argument verbatim.
See <link xlink:href="https://github.com/BurntSushi/ripgrep/blob/master/GUIDE.md#configuration-file"/>
for an example configuration.
'';
};
};
};
config = mkIf cfg.enable {
home = {
packages = [ cfg.package ];
file."${cfg.configDir}/ripgreprc" =
mkIf (cfg.arguments != [ ]) { text = lib.concatLines cfg.arguments; };
sessionVariables = {
"RIPGREP_CONFIG_PATH" = "${cfg.configDir}/ripgreprc";
};
};
};
}