diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2023-04-29 20:19:13 -0400 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2023-04-29 23:32:07 -0400 |
commit | 701642b75188b76aca964c70b0b99ea980e10b97 (patch) | |
tree | 86be909af9a101cae16745c9202628d6e8e80e6f /.envrc | |
parent | nix .envrc read local settings if any (diff) |
nix dev + update direnv 2.2.1 => 2.3.0
Diffstat (limited to '.envrc')
-rw-r--r-- | .envrc | 17 |
1 files changed, 3 insertions, 14 deletions
@@ -1,17 +1,6 @@ -NIX_ENFORCE_PURITY=1 -# - https://github.com/nix-community/nix-direnv -NixDirEnvVersion="2.2.1" -NixDirEnvSHA="sha256-zelF0vLbEl5uaqrfIzbgNzJWGmLzCmYAkInj/LNxvKs=" -#NixDirEnvSHAget="sha256-0000000000000000000000000000000000000000000=" -if ! has nix_direnv_version || ! nix_direnv_version ${NixDirEnvVersion}; then - source_url "https://raw.githubusercontent.com/nix-community/nix-direnv/${NixDirEnvVersion}/direnvrc" "${NixDirEnvSHA}" -fi -watch_file flake.lock -watch_file flake.nix -watch_file makefile if [ -f .envrc-local ]; then source_env_if_exists .envrc-local || source .envrc-local fi -PATH_add result/bin -use flake . -#use flake .#default +if [ -f .envrc-nix ]; then + source_env_if_exists .envrc-nix || source .envrc-nix +fi |