diff options
Diffstat (limited to '.envrc')
-rw-r--r-- | .envrc | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -1,13 +1,13 @@ if type lorri &>/dev/null; then - echo "direnv: using lorri from PATH ($(type -p lorri))" - eval "$(lorri direnv)" + echo "direnv: using lorri from PATH ($(type -p lorri))" + eval "$(lorri direnv)" else - # fall back to using direnv's builtin nix support - # to prevent bootstrapping problems. - use nix - NIX_ENFORCE_PURITY=0 + # fall back to using direnv's builtin nix support + # to prevent bootstrapping problems. + use nix + NIX_ENFORCE_PURITY=0 fi # source an additional user-specific .envrc in ./.envrc-local if [ -e .envrc-local ]; then - source .envrc-local + source .envrc-local fi |