From 859d354ccc1c5ee18c11d0ab342a2a1ee62be24a Mon Sep 17 00:00:00 2001 From: tristan Date: Sat, 6 Jan 2024 18:09:14 +0000 Subject: [PATCH] switch to grub --- nixos/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/nixos/default.nix b/nixos/default.nix index 17a4f74..3c2baf8 100644 --- a/nixos/default.nix +++ b/nixos/default.nix @@ -28,7 +28,11 @@ in { "electron-25.9.0" ]; - boot.loader.systemd-boot.enable = true; + boot.loader.grub = { + enable = true; + device = "nodev"; + efiSupport = true; + }; boot.loader.efi.canTouchEfiVariables = true; networking.networkmanager.enable = true;