From 3995b1fe452b7604982acb431dc64d55e3b3dc84 Mon Sep 17 00:00:00 2001 From: Hermes-Neo Date: Sat, 18 Jul 2026 03:46:33 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20switch=20to=20GRUB=20only=20=E2=80=94=20?= =?UTF-8?q?systemd-boot=20+=20GRUB=20conflict=20on=20installBootLoader?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- modules/common/system.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/modules/common/system.nix b/modules/common/system.nix index 4cba344..2b3ff24 100644 --- a/modules/common/system.nix +++ b/modules/common/system.nix @@ -3,12 +3,9 @@ { system.stateVersion = "25.11"; - # Dual bootloader: systemd-boot for UEFI, GRUB fallback for legacy/CSM + # GRUB with removable EFI — works for both UEFI and legacy/CSM boot.loader = { - systemd-boot.enable = true; efi.canTouchEfiVariables = false; - - # GRUB EFI fallback at removable media path grub = { enable = true; device = "nodev";