1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-09 18:26:54 +00:00
home-manager/tests/modules/programs/ripgrep/default-arguments.nix

13 lines
253 B
Nix
Raw Normal View History

{ config, ... }: {
config = {
programs.ripgrep = {
enable = true;
package = config.lib.test.mkStubPackage { name = "ripgrep"; };
};
nmt.script = ''
assertPathNotExists home-files/.config/ripgrep/ripgreprc
'';
};
}