diff options
author | Alan Pearce | 2024-05-21 07:31:43 +0200 |
---|---|---|
committer | Alan Pearce | 2024-05-21 07:31:43 +0200 |
commit | abe63fead407367d77e93d05e7076be84c7d525c (patch) | |
tree | 25641827d20a938aa8548d88ecb8f02579a93bac | |
parent | 168d57ddaf842dcb3272a94b70a7cad1d4c67ac9 (diff) | |
download | nixfiles-abe63fead407367d77e93d05e7076be84c7d525c.tar.lz nixfiles-abe63fead407367d77e93d05e7076be84c7d525c.tar.zst nixfiles-abe63fead407367d77e93d05e7076be84c7d525c.zip |
direnv: fall back to nix-shell instead of flake if lorri not found
-rw-r--r-- | .envrc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.envrc b/.envrc index 97eccbae..e7aaa238 100644 --- a/.envrc +++ b/.envrc @@ -2,7 +2,7 @@ if type -P lorri &>/dev/null; then eval "$(lorri direnv)" else echo 'while direnv evaluated .envrc, could not find the command "lorri" [https://github.com/nix-community/lorri]' - use flake + use nix fi PATH_add bin FLAKE=$PWD |