diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2023-10-30 22:31:28 -0400 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2023-10-30 22:31:28 -0400 |
commit | ad803956c1f7ce1a4b0e820a21881a58a326b7f7 (patch) | |
tree | eb36cfcd0bcbed76a51b0e97e0a46609769ca232 /.envrc | |
parent | debian/changelog (7.2.1-2) (diff) | |
parent | version & changelog, tag for release (diff) |
Merge tag 'sisu_7.3.0' into debian
SiSU 7.3.0
Diffstat (limited to '.envrc')
-rw-r--r-- | .envrc | 10 |
1 files changed, 4 insertions, 6 deletions
@@ -1,8 +1,6 @@ -NIX_ENFORCE_PURITY=0 -if ! has nix_direnv_version || ! nix_direnv_version 1.4.0; then -# https://github.com/nix-community/nix-direnv - source_url "https://raw.githubusercontent.com/nix-community/nix-direnv/1.4.0/direnvrc" "sha256-4XfVDjv75eHMWN4G725VW7BoOV4Vl3vAabK4YXIfPyE=" +if [ -f .envrc-local ]; then + source_env_if_exists .envrc-local || source .envrc-local fi -if [ -e .env/local ]; then - source_env_if_exists .env/local || source .env/local +if [ -f .envrc-nix ]; then + source_env_if_exists .envrc-nix || source .envrc-nix fi |