Install ripgrep-all

This commit is contained in:
Valentin Brandl 2023-04-24 23:24:36 +02:00
parent 7b7fbb64d8
commit bd8047d482
Signed by: vbrandl
GPG Key ID: CAD4DA1A789125F9
2 changed files with 6 additions and 0 deletions

View File

@ -33,6 +33,7 @@ user:
./qt.nix ./qt.nix
./redshift.nix ./redshift.nix
./reversing.nix ./reversing.nix
./rga.nix
./rofi.nix ./rofi.nix
./rust.nix ./rust.nix
./signal.nix ./signal.nix

5
home/rga.nix Normal file
View File

@ -0,0 +1,5 @@
{ pkgs, ... }: {
home.packages = with pkgs; [
ripgrep-all
];
}