From 8119b9e0a52559fa1bc166592828079b757f476e Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Tue, 26 Aug 2025 09:53:54 -0500 Subject: [PATCH] Add find file alias to nushell --- home/baseline/nushell.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/home/baseline/nushell.nix b/home/baseline/nushell.nix index 617a4d2..5c693f5 100644 --- a/home/baseline/nushell.nix +++ b/home/baseline/nushell.nix @@ -75,6 +75,10 @@ in } nixos-rebuild switch --use-remote-sudo --use-substitutes --target-host $host --build-host $buildhost } + + def ff [ $file: string ] { + ls **/* | where name =~ $file + } ''; settings = { buffer_editor = lib.getExe config.programs.nixvim.package;