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