diff --git a/scripts/linode-bootstrap.sh b/scripts/linode-bootstrap.sh index cd77ebb..fc2d9f0 100755 --- a/scripts/linode-bootstrap.sh +++ b/scripts/linode-bootstrap.sh @@ -82,7 +82,7 @@ label_disks() { ################################################################################ # Download the NixOS ISO and write it to the installer disk. write_installer_to_disk() { - curl -k "$NIXOS_URL" \ + curl -L -k "$NIXOS_URL" \ | dd bs=1M of=/dev/disk/by-label/installer sync @@ -139,6 +139,7 @@ enable_ssh() { services.openssh.enable = true; services.openssh.permitRootLogin = "yes"; services.openssh.openFirewall = true; + networking.interfaces.enp0s5.tempAddress = "disabled"; } EOF }