Add an alias to ripgrep all files.

This commit is contained in:
Tom Alexander 2025-11-15 19:27:47 -05:00
parent 5b849c266e
commit f27aae960f
Signed by: talexander
GPG Key ID: 36C99E8B3C39D85F

View File

@ -14,6 +14,9 @@ let
cleanup_temporary_files = ( cleanup_temporary_files = (
patchScriptBin "cleanup_temporary_files" (builtins.readFile ./files/cleanup_temporary_files.bash) patchScriptBin "cleanup_temporary_files" (builtins.readFile ./files/cleanup_temporary_files.bash)
); );
alias_rga = pkgs.writeShellScriptBin "ks" ''
exec ${pkgs.ripgrep}/bin/rg -uuu "''${@}"
'';
in in
{ {
imports = [ ]; imports = [ ];
@ -39,6 +42,7 @@ in
usbutils # for lsusb usbutils # for lsusb
pciutils # for lspci pciutils # for lspci
ripgrep ripgrep
alias_rga
strace strace
# ltrace # Disabled because it uses more than 48GB of /tmp space during test phase. # ltrace # Disabled because it uses more than 48GB of /tmp space during test phase.
trace-cmd # ftrace trace-cmd # ftrace