1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2024-12-14 11:57:34 +00:00

Update modules/programs/bash/default.nix

Co-authored-by: Michael Hoang <Enzime@users.noreply.github.com>
This commit is contained in:
Jakub Janczak 2023-07-26 08:29:48 +02:00 committed by Jakub Janczak
parent e21b70da3f
commit 6a00d1b59b

View file

@ -56,7 +56,7 @@ in
__ETC_BASHRC_SOURCED=1
# Don't execute this file when running in a pure nix-shell.
if [ "$IN_NIX_SHELL" == "pure" ]; then return; fi
if [ "$IN_NIX_SHELL" = "pure" ]; then return; fi
if [ -z "$__NIX_DARWIN_SET_ENVIRONMENT_DONE" ]; then
. ${config.system.build.setEnvironment}