diff options
author | Alan Pearce | 2020-07-06 08:34:33 +0200 |
---|---|---|
committer | Alan Pearce | 2020-07-06 12:34:30 +0200 |
commit | 0907784dd797bfef1931f98178df2bf89b6af8c6 (patch) | |
tree | eb61879e96d29c07fddad088494dc3113ecf35b2 /system | |
parent | ae7ecf326868523371dd7d0049b0c0685de6326d (diff) | |
download | nixfiles-0907784dd797bfef1931f98178df2bf89b6af8c6.tar.lz nixfiles-0907784dd797bfef1931f98178df2bf89b6af8c6.tar.zst nixfiles-0907784dd797bfef1931f98178df2bf89b6af8c6.zip |
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.
Diffstat (limited to 'system')
-rw-r--r-- | system/settings/hardware/systemd-boot.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/settings/hardware/systemd-boot.nix b/system/settings/hardware/systemd-boot.nix index 9793cf66..bc5fca59 100644 --- a/system/settings/hardware/systemd-boot.nix +++ b/system/settings/hardware/systemd-boot.nix @@ -4,6 +4,6 @@ enable = true; editor = false; # Don't allow modification }; - boot.loader.efi.canTouchEfiVariables = true; + boot.loader.efi.canTouchEfiVariables = false; console.earlySetup = true; } |