change default shell and nu config to env var

This commit is contained in:
2026-01-12 12:37:14 +01:00
parent 640fba5cdf
commit aef38d5edb

View File

@@ -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
'';
}