fix(guix): add --disable-authentication

This commit is contained in:
vxtls 2026-03-11 09:47:23 -04:00
parent 173db715e0
commit a3878a91b9
2 changed files with 3 additions and 2 deletions

View file

@ -23,7 +23,8 @@ iso_store_path="$(guix system image \
--system=x86_64-linux \
-t iso9660 \
-e '(@@ (gnu system install) installation-os)' \
--no-substitutes)"
--no-substitutes \
--disable-authentication)"
if [ ! -e "${iso_store_path}" ]; then
echo "guix system image did not return a valid path: ${iso_store_path}" >&2

View file

@ -231,4 +231,4 @@ EOF
chmod 0644 "${channels_file}"
guix pull --bootstrap --no-substitutes --channels="${channels_file}"
guix pull --bootstrap --no-substitutes --channels="${channels_file}" --disable-authentication