systemd-boot: Fix broken UEFI install It seems as though the EFI variables do not need to be modified in order to add a bootloader; I was able to reinstall two systems without it.
Alan Pearce alan@alanpearce.eu
Mon, 06 Jul 2020 08:34:33 +0200
1 files changed, 1 insertions(+), 1 deletions(-)
M system/settings/hardware/systemd-boot.nix → system/settings/hardware/systemd-boot.nix
@@ -4,6 +4,6 @@ { boot.loader.systemd-boot = { enable = true; editor = false; # Don't allow modification }; - boot.loader.efi.canTouchEfiVariables = true; + boot.loader.efi.canTouchEfiVariables = false; console.earlySetup = true; }