aboutsummaryrefslogtreecommitdiffhomepage
path: root/.envrc
blob: 2b39146e4a677739bdedb3ebd4681942f750c7e2 (plain)
1
2
3
4
5
6
7
8
9
10
if type lorri &>/dev/null; then
  echo "direnv: using lorri from PATH ($(type -p lorri))"
  eval "$(lorri direnv)"
else # fallback prevent bootstrapping problems by using direnv's builtin nix support
  use nix
  NIX_ENFORCE_PURITY=0
fi
if [ -e .envrc-local ]; then # source an additional user-specific .envrc in ./.envrc-local
  source .envrc-local
fi