switched to grub (for win dual boot)

This commit is contained in:
twoneis 2024-01-06 19:24:43 +01:00
parent 262fba83ba
commit 109ceb7b27
2 changed files with 11 additions and 5 deletions

View file

@ -33,8 +33,14 @@
documentation.nixos.enable = false;
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.loader = {
grub = {
enable = true;
efiSupport = true;
device = "nodev";
useOSProber = true;
};
};
# Enable networking
networking.networkmanager.enable = true;