Jump to content

Dual Booting NixOS and Windows: Difference between revisions

m
→‎MBR + Grub: syntaxhighlight
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:


<pre>{
<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 = &quot;/dev/sda&quot;;
   boot.loader.grub.device = "/dev/sda";
   boot.loader.grub.extraEntries = ''
   boot.loader.grub.extraEntries = ''
     menuentry &quot;Windows 7&quot; {
     menuentry "Windows 7" {
       chainloader (hd0,1)+1
       chainloader (hd0,1)+1
     }
     }
   '';
   '';
}</pre>
}</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/


Anonymous user