mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
2951946183
* 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>
12 lines
253 B
Nix
12 lines
253 B
Nix
{ config, ... }: {
|
|
config = {
|
|
programs.ripgrep = {
|
|
enable = true;
|
|
package = config.lib.test.mkStubPackage { name = "ripgrep"; };
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertPathNotExists home-files/.config/ripgrep/ripgreprc
|
|
'';
|
|
};
|
|
}
|