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