Files
nixos/hosts/jude/boot.nix
T

16 lines
365 B
Nix
Raw Normal View History

2022-04-27 11:23:11 -05:00
{ ... }:
{
# Use the systemd-boot EFI boot loader.
#boot.loader.systemd-boot.enable = true;
boot.loader.grub.device = "/dev/nvme0n1";
2022-08-02 01:50:50 -05:00
boot.loader.grub.useOSProber = true;
boot.loader.grub.extraEntries = ''
menuentry "Windows" {
chainloader (hd0,2)+1
}
'';
2022-04-27 11:23:11 -05:00
boot.loader.efi.canTouchEfiVariables = true;
networking.interfaces.enp4s0.useDHCP = true;
}