From dc5a8c85a7b6e83c108870ccf4a112f2fc50eace Mon Sep 17 00:00:00 2001 From: Marko Korhonen Date: Tue, 17 Sep 2024 23:33:49 +0300 Subject: [PATCH] Switch to grub --- nixos_common.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/nixos_common.nix b/nixos_common.nix index 515eba41..365b86bf 100644 --- a/nixos_common.nix +++ b/nixos_common.nix @@ -30,8 +30,12 @@ boot = { loader = { - systemd-boot.enable = true; efi.canTouchEfiVariables = true; + grub = { + enable = true; + efiSupport = true; + device = "nodev"; + }; }; };