Skip to content

Commit

Permalink
Configure GRUB bootloader for booting into Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
maxdeviant committed Jan 11, 2020
1 parent fbbd1e3 commit 651a2e7
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions nixos/configuration.nix
Expand Up @@ -15,6 +15,13 @@
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.loader.grub = {
enable = true;
# "nodev" means we generate a GRUB boot menu but don't install GRUB.
devices = [ "nodev" ];
efiSupport = true;
useOSProber = true;
};

networking.hostName = "firelink"; # Define your hostname.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
Expand Down

0 comments on commit 651a2e7

Please sign in to comment.