Files
Nomarchy/bin/nomarchy-test-installer
Bernardo Magri 33deeb494b initial commit
2026-04-01 17:06:01 +01:00

15 lines
351 B
Bash
Executable File

#!/usr/bin/env bash
# Build and run the Nomarchy Installer VM for testing.
echo "Building Nomarchy Installer VM..."
nix build .#nixosConfigurations.installerVm.config.system.build.vm
if [ $? -eq 0 ]; then
echo "Success! Launching Installer VM..."
./result/bin/run-nomarchy-installer-vm
else
echo "Error: VM build failed."
exit 1
fi