2024-10-21 16:27:52 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
# the shebang is ignored, but nice for editors
|
|
|
|
|
2024-07-05 09:43:53 +00:00
|
|
|
# shellcheck shell=bash
|
2024-10-21 16:27:52 +00:00
|
|
|
if type -P lorri &>/dev/null; then
|
|
|
|
eval "$(lorri direnv --flake .)"
|
|
|
|
else
|
|
|
|
echo 'while direnv evaluated .envrc, could not find the command "lorri" [https://github.com/nix-community/lorri]'
|
|
|
|
use flake
|
|
|
|
fi
|
|
|
|
|