10 lines
334 B
Plaintext
10 lines
334 B
Plaintext
# If we are a computer with nix-shell available, then use that to setup
|
|
# the build environment with exactly what we need.
|
|
if has nix; then
|
|
watch_file nix/{devShell,package,wraptest}.nix
|
|
use flake
|
|
fi
|
|
|
|
# Source an `.envrc.local` if it exists. You can add your custom changes there.
|
|
[[ -f .envrc.local ]] && source_env .envrc.local
|