10 lines
212 B
Bash
Executable File
10 lines
212 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
# Run a shell inside of the nix-based development environment.
|
|
|
|
set -eu
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
exec nix --experimental-features 'nix-command flakes' develop path:./nix --command "${SHELL:-sh}"
|