the entry stopped showing up for some reason

This commit is contained in:
Nickiel12 2023-09-21 11:24:16 -07:00
parent ed5eec2321
commit 8f04684b00

View file

@ -22,15 +22,19 @@
boot.loader = { efi = { boot.loader = { efi = {
canTouchEfiVariables = true; efiSysMountPoint = "/boot"; canTouchEfiVariables = true; efiSysMountPoint = "/boot";
}; };
grub = { devices = [ "nodev" ]; efiSupport = true; enable = true; grub = {
useOSProber = false; extraEntries = '' devices = [ "nodev" ];
menuentry 'Windows Boot Manager (on /dev/nvme0n1p1)' --class windows efiSupport = true;
--class os $menuentry_id_option 'osprober-efi-364F-BE7A' { enable = true;
insmod part_gpt insmod fat search --no-floppy --fs-uuid useOSProber = true;
--set=root 364F-BE7A chainloader # extraEntries = ''
/efi/Microsoft/Boot/bootmgfw.efi # menuentry 'Windows Boot Manager (on /dev/nvme0n1p1)' --class windows
} # --class os $menuentry_id_option 'osprober-efi-364F-BE7A' {
''; # insmod part_gpt insmod fat search --no-floppy --fs-uuid
# --set=root 364F-BE7A chainloader
# /efi/Microsoft/Boot/bootmgfw.efi
# }
# '';
}; };
}; };