From d2b61c7e0ada2a47b21b75ddb1fde6c41e41b1ff Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Mon, 2 Mar 2026 15:38:12 -0500 Subject: [PATCH] boot fix --- hosts/xps15/configuration.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/hosts/xps15/configuration.nix b/hosts/xps15/configuration.nix index c067c87..4d29069 100644 --- a/hosts/xps15/configuration.nix +++ b/hosts/xps15/configuration.nix @@ -28,11 +28,15 @@ in boot.loader.grub = { enable = true; efiSupport = true; - device = "nodev"; useOSProber = true; configurationLimit = 5; gfxmodeEfi = "1920x1200,auto"; fontSize = 36; + mirroredBoots = [{ + path = "/boot"; + efiSysMountPoint = "/efi"; + devices = [ "nodev" ]; + }]; }; boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.efiSysMountPoint = "/efi";