summaryrefslogtreecommitdiff
path: root/modules/programs
diff options
context:
space:
mode:
authorJakub Janczak <kubek2k@gmail.com>2023-07-26 08:29:48 +0200
committerJakub Janczak <jakub.janczak@scrive.com>2023-07-26 09:19:33 +0200
commit6a00d1b59b2618c98977fb4200e71de28174d737 (patch)
tree9f8ddde9422d6a83c7e926b63d52a6a9dd099fb8 /modules/programs
parente21b70da3f9cd630629b83faa7762be5c6da23f2 (diff)
Update modules/programs/bash/default.nix
Co-authored-by: Michael Hoang <Enzime@users.noreply.github.com>
Diffstat (limited to 'modules/programs')
-rw-r--r--modules/programs/bash/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/programs/bash/default.nix b/modules/programs/bash/default.nix
index e4c07c1..61f82e0 100644
--- a/modules/programs/bash/default.nix
+++ b/modules/programs/bash/default.nix
@@ -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}