75fa0ae5af
GitOrigin-RevId: c3ab5ea047e6dc73df530948f7367455749d8906
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
|
|
'';
|
|
};
|
|
}
|