From 2f23076dea65322a2df06ca7be844543844bd1de Mon Sep 17 00:00:00 2001 From: aaron Date: Sun, 16 Nov 2025 18:19:05 +0100 Subject: [PATCH] feat: replace systemd-boot with grub --- configuration.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/configuration.nix b/configuration.nix index eb931dc..77e421b 100644 --- a/configuration.nix +++ b/configuration.nix @@ -10,9 +10,14 @@ # use flakes nix.settings.experimental-features = [ "nix-command" "flakes" ]; - # Use the systemd-boot EFI boot loader. - boot.loader.systemd-boot.enable = true; + boot.loader.systemd-boot.enable = false; + boot.loader.grub = { + enable = true; + device = "nodev"; + efiSupport = true; + }; + boot.loader.efi.canTouchEfiVariables = true; boot.kernelParams = [ "quiet"