#!/usr/bin/env bash
set -e

# Build the Nomarchy Live ISO (Full Desktop Environment) using the flake.

echo "Building Nomarchy Live ISO..."
nix build .#nixosConfigurations.nomarchy-live.config.system.build.isoImage

ISO_PATH=$(readlink -f result/iso/*.iso)
echo "Success! Live ISO built at: $ISO_PATH"
echo "You can now burn this to a USB drive using 'dd' or 'etcher'."
