updated deploy script

24aab6a9ee4d… · Ryan Schanzenbacher ·

parent 33a7e1524d91… view tree

Changed files

FileChanges
deploy.sh +6 −1 raw
diff --git a/deploy.sh b/deploy.sh
index 2d73d9b..a428ddc 100755
--- a/deploy.sh
+++ b/deploy.sh
@@ -58,8 +58,13 @@ copy_and_prepare() {
echo "Mounting /gnu/store to destination disk..."
herd start cow-store /mnt
+ # Install the non-guix signing keys
+ echo "Installing non-guix signing keys for substitutes..."
+ curl -o sign-key.pub https://substitutes.nonguix.org/signing-key.pub
+ guix archive --authorize < sign-key.pub
+
echo "Beginning install!"
- guix time-machine -C ./channels.scm -- system -L ./modules --substitute-urls='https://bordeaux.guix.gnu.org https://ci.guix.gnu.org https://substitutes.nonguix.org' init $install_hostname.scm /mnt
+ guix time-machine -C ./channels.scm -- system -L ./modules --substitute-urls='https://substitutes.nonguix.org https://bordeaux.guix.gnu.org https://ci.guix.gnu.org' init $install_hostname.scm /mnt
}