From aef38d5edb87e137d2f50716c1b440ead050221f Mon Sep 17 00:00:00 2001 From: Sin Ser'hao Date: Mon, 12 Jan 2026 12:37:14 +0100 Subject: [PATCH] change default shell and nu config to env var --- devshell.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/devshell.nix b/devshell.nix index cc129f7..1317589 100644 --- a/devshell.nix +++ b/devshell.nix @@ -46,7 +46,9 @@ pkgs.mkShell { # Load custom bash code shellHook = '' - nu --config ${nu-config} + export NU_CONFIG_DIR=${nu-config} + export SHELL=nu + nu exit 0 ''; }