From bbb3b363daf91d4475d81524cf18a2139c2589f7 Mon Sep 17 00:00:00 2001 From: Joseph Hanson Date: Fri, 21 Jun 2024 19:33:05 -0500 Subject: [PATCH] enable osprober for windows dual boot --- nixos/profiles/hw-legion-15arh05h.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/nixos/profiles/hw-legion-15arh05h.nix b/nixos/profiles/hw-legion-15arh05h.nix index a46c740..50e2196 100644 --- a/nixos/profiles/hw-legion-15arh05h.nix +++ b/nixos/profiles/hw-legion-15arh05h.nix @@ -14,13 +14,17 @@ loader = { grub = { enable = true; + useOSProber = true; zfsSupport = true; efiSupport = true; - efiInstallAsRemovable = true; + # efiInstallAsRemovable = true; mirroredBoots = [ { devices = ["nodev"]; path = "/boot";} ]; }; + efi = { + canTouchEfiVariables = true; + }; }; };