11 lines
463 B
Bash
11 lines
463 B
Bash
if ! has nix_direnv_version || ! nix_direnv_version 3.0.4; then
|
|
source_url "https://raw.githubusercontent.com/nix-community/nix-direnv/3.0.4/direnvrc" "sha256-DzlYZ33mWF/Gs8DDeyjr8mnVmQGx7ASYqA5WlxwvBG4="
|
|
fi
|
|
|
|
watch_file devenv.nix
|
|
watch_file devenv.lock
|
|
watch_file devenv.yaml
|
|
if ! use flake . --impure
|
|
then
|
|
echo "devenv could not be build. The devenv environment was not loaded. Make the necessary changes to devenv.nix and hit enter to try again." >&2
|
|
fi
|