From 2ec0c19c595c5d46cd039ae9b2d243f080f46eac Mon Sep 17 00:00:00 2001 From: Gabriel Fontes Date: Tue, 30 Dec 2025 16:25:28 -0300 Subject: [PATCH] fix(home/cli/nushell): fix deprecated flag --- home/gabriel/features/cli/nushell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/gabriel/features/cli/nushell.nix b/home/gabriel/features/cli/nushell.nix index 8e906456..7c2a41b4 100644 --- a/home/gabriel/features/cli/nushell.nix +++ b/home/gabriel/features/cli/nushell.nix @@ -3,7 +3,7 @@ enable = true; extraConfig = /* nu */ '' def create_left_prompt [] { - let dir = match (do --ignore-shell-errors { $env.PWD | path relative-to $nu.home-path }) { + let dir = match (do --ignore-errors { $env.PWD | path relative-to $nu.home-path }) { null => $env.PWD ''' => '~' $relative_pwd => ([~ $relative_pwd] | path join)