Files
moslab-code/nix.sh
vreusch 34e39dc2b6 add nix flake for development shell
It does not support cross compilation but requires x86_64-linux.
2025-09-12 15:56:03 +02:00

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}"