From a62196fbc1093bfc70db0be42a2a124b103c568a Mon Sep 17 00:00:00 2001 From: caandt Date: Fri, 23 Aug 2024 13:38:07 -0500 Subject: [PATCH] change bootloader to grub --- configuration.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/configuration.nix b/configuration.nix index 50a087d..ef026ff 100644 --- a/configuration.nix +++ b/configuration.nix @@ -8,8 +8,13 @@ use-xdg-base-directories = true; }; - boot.loader.systemd-boot.enable = true; - boot.loader.efi.canTouchEfiVariables = true; + boot.loader = { + grub.enable = true; + grub.device = "nodev"; + grub.efiSupport = true; + grub.useOSProber = true; + efi.canTouchEfiVariables = true; + }; boot.tmp.useTmpfs = true;