From d190b88a8c79b44e8e367ee9642bb4ce6ccb87ea Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Wed, 27 Oct 2021 08:38:28 -0400 Subject: [PATCH] fix: fix for efiInstallAsRemovable assertions --- profiles/boot/grub.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/profiles/boot/grub.nix b/profiles/boot/grub.nix index b670668..84d7a5f 100644 --- a/profiles/boot/grub.nix +++ b/profiles/boot/grub.nix @@ -5,10 +5,10 @@ device = "nodev"; efiSupport = true; useOSProber = true; - efiInstallAsRemovable = true; + efiInstallAsRemovable = lib.mkDefault true; }; efi = { - canTouchEfiVariables = true; + canTouchEfiVariables = lib.mkDefault false; efiSysMountPoint = "/boot/efi"; }; };