fix: turn off efi.canTouchEfiVariables when grub.efiInstallAsRemovable is true
All checks were successful
ci / nix-fmt (push) Successful in 8m33s

This commit is contained in:
Ceferino Patino 2026-05-05 00:43:42 -05:00
commit 23bb272443
Signed by: c4patino
SSH key fingerprint: SHA256:Wu+cU1t+7zVT9wzew/4meNmeulo66NzMqc22MdDBgXI

View file

@ -4,6 +4,7 @@
namespace,
...
}: let
inherit (lib) mkForce;
inherit (lib.${namespace}) enabled;
in {
imports = [
@ -61,7 +62,10 @@ in {
hostId = "9245f27e";
};
boot.loader.grub.efiInstallAsRemovable = true;
boot.loader = {
efi.canTouchEfiVariables = mkForce false;
grub.efiInstallAsRemovable = true;
};
system.stateVersion = "25.11";
}