diff --git a/build-iso.sh b/build-iso.sh new file mode 100755 index 0000000..be34adc --- /dev/null +++ b/build-iso.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +# Write out the current channels to be included with the image +guix describe -f channels > channels.scm + +# Build the image and copy it to the current directory +image=$(guix system image -t iso9660 installer.scm) +echo "Built image: $image" +cp $image ./guix-installer.iso