diff options
Diffstat (limited to 'nixDevEnv.sh')
-rw-r--r-- | nixDevEnv.sh | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/nixDevEnv.sh b/nixDevEnv.sh index 669d42f..640d07e 100644 --- a/nixDevEnv.sh +++ b/nixDevEnv.sh @@ -1,9 +1,3 @@ -if [ -f .envrc-git-init ]; then - source_env_if_exists .envrc-git-init || source .envrc-git-init -fi -if [ -f .envrc-local ]; then - source_env_if_exists .envrc-local || source .envrc-local -fi -if [ -f .envrc-nix ]; then - source_env_if_exists .envrc-nix || source .envrc-nix +if [ -f .envrc ]; then + source_env_if_exists .envrc || source .envrc fi |