6 lines
198 B
Text
6 lines
198 B
Text
|
#!/bin/sh
|
||
|
repo="$HOME/.config/guix"
|
||
|
date="$(date -Iseconds)"
|
||
|
image=$(guix-retry guix system -L "$repo/modules" image -t iso9660 "$repo/systems/installer.scm")
|
||
|
cp $image "./guix-installer-$date.iso"
|