From 24aab6a9ee4d3010c1de1fcd279bd558dcb1803a Mon Sep 17 00:00:00 2001 From: Ryan Schanzenbacher Date: Thu, 14 Sep 2023 14:28:21 -0400 Subject: [PATCH] updated deploy script --- deploy.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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 }