mirror of
https://github.com/HendrikRauh/inventree-app.git
synced 2026-01-13 03:26:24 +00:00
14 lines
519 B
Bash
14 lines
519 B
Bash
# Check if nix is available
|
|
if command -v nix &> /dev/null; then
|
|
use flake
|
|
|
|
echo "✅ Nix development environment loaded"
|
|
else
|
|
# Nix is not available - show instructions for non-Nix users
|
|
echo "⚠️ Nix not detected. Please ensure the following are installed manually:"
|
|
echo " - Java JDK 17"
|
|
echo " - Python 3 with invoke package"
|
|
echo " - Android SDK"
|
|
echo " - FVM (Flutter Version Management)"
|
|
echo "💡 To use Nix: Install from https://nixos.org/download.html"
|
|
fi
|