From ca8f0fd1ba73750982faf841a1e02d321cb9765a Mon Sep 17 00:00:00 2001 From: Sin Ser'hao Date: Mon, 12 Jan 2026 12:47:41 +0100 Subject: [PATCH] set env var NU_CONFIG to nu config --- devshell.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/devshell.nix b/devshell.nix index 10214ff..d931f6d 100644 --- a/devshell.nix +++ b/devshell.nix @@ -47,8 +47,7 @@ pkgs.mkShell { # Load custom bash code shellHook = '' export NU_CONFIG=${nu-config} - alias nu_config="nu --config ${nu-config}" - nu_config + nu --config ${nu-config} exit 0 ''; }