prefect: use UEFI boot loader instead of GRUB's os-prober
Alan Pearce alan@alanpearce.eu
Thu, 16 Jun 2022 12:14:01 +0200
2 files changed, 3 insertions(+), 4 deletions(-)
M system/prefect.nix → system/prefect.nix
@@ -42,8 +42,7 @@ Option "MetaModes" "2560x1440_120 +0+0 { ForceFullCompositionPipeline = On }" Option "AllowIndirectGLXProtocol" "off" Option "TripleBuffer" "on" ''; - boot.loader.timeout = 3; - boot.loader.grub.default = 2; # Default to Windows + boot.loader.grub.useOSProber = false; boot.kernelPackages = pkgs.linuxPackages_zen; boot.extraModulePackages = with config.boot.kernelPackages; [
M system/settings/hardware/grub2.nix → system/settings/hardware/grub2.nix
@@ -1,4 +1,4 @@-{ config, pkgs, ... }: +{ config, pkgs, lib, ... }: { boot.loader = { grub = { @@ -7,7 +7,7 @@ splashImage = null; version = 2; device = "nodev"; efiSupport = true; - useOSProber = true; + useOSProber = lib.mkDefault true; }; efi.canTouchEfiVariables = true; };