From 95ff6578bb4718d60271e8e12c474cf658b666eb Mon Sep 17 00:00:00 2001 From: Sin Ser'hao Date: Mon, 12 Jan 2026 12:44:20 +0100 Subject: [PATCH] alias nu --- devshell.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/devshell.nix b/devshell.nix index 1317589..a275ca7 100644 --- a/devshell.nix +++ b/devshell.nix @@ -46,9 +46,9 @@ pkgs.mkShell { # Load custom bash code shellHook = '' - export NU_CONFIG_DIR=${nu-config} - export SHELL=nu - nu + export NU_CONFIG=${nu-config} + alias nu-config="nu --config ${nu-config}" + nu-config exit 0 ''; }