fix: turn off efi.canTouchEfiVariables when grub.efiInstallAsRemovable is true
All checks were successful
ci / nix-fmt (push) Successful in 8m33s
All checks were successful
ci / nix-fmt (push) Successful in 8m33s
This commit is contained in:
parent
fb73759d77
commit
23bb272443
1 changed files with 5 additions and 1 deletions
|
|
@ -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";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue