From 245658c441cead14d744bf79e65b5aa4107eb80b Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Wed, 15 Oct 2025 09:19:33 -0500 Subject: [PATCH] Update Isaiah Windows boot --- hosts/isaiah/hardware-configuration.nix | 26 ++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/hosts/isaiah/hardware-configuration.nix b/hosts/isaiah/hardware-configuration.nix index 8c3161a..2abe7ad 100644 --- a/hosts/isaiah/hardware-configuration.nix +++ b/hosts/isaiah/hardware-configuration.nix @@ -33,19 +33,19 @@ enable = true; configurationLimit = 20; extraEntries = { - "Win2.conf" = ( - lib.strings.concatStringsSep "\n" [ - "title Windows 11" - "efi /shellx64.efi" - "options -nointerrupt -noconsolein -noconsoleout windows11.nsh" - ] - ); - "Shell.conf" = ( - lib.strings.concatStringsSep "\n" [ - "title EFI Shell" - "efi /shell.efi" - ] - ); + "Win.conf" = '' + title Windows + efi /EFI/Microsoft/Boot/bootmgfw.efi + ''; + "Bootx64.conf" = '' + title BOOTX64.efi + efi /EFI/BOOT/BOOTX64.efi + options -nointerrupt -noconsolein -nosonsoleout windows11.nsh + ''; + "Shell.conf" = '' + title EFI Shell + efi /shell.efi + ''; }; extraFiles = { "windows11.nsh" = (pkgs.writeText "windows11.nsh" (lib.strings.concatStringsSep "\n" [ ]));