9 lines
138 B
Nix
9 lines
138 B
Nix
|
{pkgs, ...}: {
|
||
|
home.packages = with pkgs; [ripgrep];
|
||
|
|
||
|
xdg.configFile."ripgrep/config".text = ''
|
||
|
--follow
|
||
|
--smart-case
|
||
|
'';
|
||
|
}
|