dotfiles-guix/scripts/build-installer

9 lines
311 B
Bash
Executable file

#!/bin/sh
set -e
export GUIX_RETRY_NO_PROMPT=yes
retry="$(dirname $0)/guix-retry"
repo="$(realpath "$(dirname $0)/..")"
command="\"$retry\" guix system -L \"$repo/modules\" image -t iso9660 \"$repo/systems/installer.scm\""
image=$(sh -c "$command")
date="$(date -Iseconds)"
cp $image "guix-installer-$date.iso"