From 045ca620ea4d428de6f0d855672d9e1427c29b23 Mon Sep 17 00:00:00 2001 From: h7x4 Date: Mon, 5 May 2025 22:30:47 +0200 Subject: [PATCH] kasei: grub -> systemd-boot --- hosts/kasei/configuration.nix | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/hosts/kasei/configuration.nix b/hosts/kasei/configuration.nix index f8db69d..02b674e 100644 --- a/hosts/kasei/configuration.nix +++ b/hosts/kasei/configuration.nix @@ -109,14 +109,9 @@ initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" "sr_mod" ]; loader = { - efi.canTouchEfiVariables = false; - grub = { - enable = true; - efiSupport = true; - fsIdentifier = "label"; - device = "nodev"; - efiInstallAsRemovable = true; - }; + efi.canTouchEfiVariables = true; + systemd-boot.enable = true; + systemd-boot.consoleMode = "1"; }; };