all repos — nixfiles @ 0907784dd797bfef1931f98178df2bf89b6af8c6

System and user configuration, managed by nix and home-manager

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
commit

0907784dd797bfef1931f98178df2bf89b6af8c6

parent

ae7ecf326868523371dd7d0049b0c0685de6326d

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M system/settings/hardware/systemd-boot.nixsystem/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;
 }