1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-21 17:59:39 +01:00

ripgrep: add module (#4017)

* ripgrep: add module

* ripgrep: Apply suggestions from code review

Co-authored-by: Naïm Favier <n@monade.li>

* ripgrep: fix maintainers

Co-authored-by: Naïm Favier <n@monade.li>

* ripgrep: rename config into arguments

---------

Co-authored-by: Naïm Favier <n@monade.li>
This commit is contained in:
Nikita Pedorich 2023-06-02 17:59:12 +02:00 committed by GitHub
parent 3876cc613a
commit 2951946183
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 99 additions and 0 deletions

View file

@ -394,4 +394,10 @@
github = "natecox";
githubId = 2782695;
};
pedorich-n = {
name = "Mykyta Pedorich";
email = "pedorich.n@gmail.com";
github = "pedorich-n";
githubId = 15573098;
};
}

View file

@ -163,6 +163,7 @@ let
./programs/qutebrowser.nix
./programs/rbw.nix
./programs/readline.nix
./programs/ripgrep.nix
./programs/rofi-pass.nix
./programs/rofi.nix
./programs/rtorrent.nix

View file

@ -0,0 +1,51 @@
{ 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";
};
};
};
}