12 lines
210 B
Nix
12 lines
210 B
Nix
{ ... }:
|
|
{
|
|
home-manager.users.kalle.programs.ripgrep = {
|
|
enable = true;
|
|
arguments = [
|
|
"--hidden"
|
|
"--glob=!.nix-profile/*"
|
|
"--glob=!.git/*"
|
|
"--glob=!/nix/store/*"
|
|
];
|
|
};
|
|
}
|