Dual Booting NixOS and Windows: Difference between revisions
imported>Makefu initial batch of nixos-users |
imported>Fadenb m →MBR + Grub: syntaxhighlight |
||
Line 3: | Line 3: | ||
When using MBR on your disk then you can configure grub chain-loading: | When using MBR on your disk then you can configure grub chain-loading: | ||
< | <syntaxhighlight lang="nix">{ | ||
boot.loader.grub.enable = true; | boot.loader.grub.enable = true; | ||
boot.loader.grub.version = 2; | boot.loader.grub.version = 2; | ||
boot.loader.grub.device = | boot.loader.grub.device = "/dev/sda"; | ||
boot.loader.grub.extraEntries = '' | boot.loader.grub.extraEntries = '' | ||
menuentry | menuentry "Windows 7" { | ||
chainloader (hd0,1)+1 | chainloader (hd0,1)+1 | ||
} | } | ||
''; | ''; | ||
}</ | }</syntaxhighlight> | ||
Source: https://www.reddit.com/r/NixOS/comments/31lx3i/windows_and_nixos_dual_boot/ | Source: https://www.reddit.com/r/NixOS/comments/31lx3i/windows_and_nixos_dual_boot/ | ||