mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
13 lines
253 B
Nix
13 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
|
||
|
'';
|
||
|
};
|
||
|
}
|