From 7fcd2cfede2ea5c60ae95f8c2da4b727fe6d3c87 Mon Sep 17 00:00:00 2001 From: Charlotte Van Petegem Date: Tue, 3 Dec 2024 10:57:12 +0100 Subject: [PATCH] kholinar: Configure a bootloader... --- machines/kholinar/hardware.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/machines/kholinar/hardware.nix b/machines/kholinar/hardware.nix index 10eea978..e299bd51 100644 --- a/machines/kholinar/hardware.nix +++ b/machines/kholinar/hardware.nix @@ -4,7 +4,10 @@ imports = [ (modulesPath + "/installer/scan/not-detected.nix") ]; boot = { - loader.efi.canTouchEfiVariables = true; + loader = { + systemd-boot.enable = true; + efi.canTouchEfiVariables = true; + }; initrd = { availableKernelModules = [ "xhci_pci" "nvme" "usbhid" "usb_storage" "sd_mod" "sdhci_pci" ]; kernelModules = [ "i915" ]; @@ -19,9 +22,6 @@ chvp.base.nix.unfreePackages = [ "displaylink" ]; - # For Secure Boot management - environment.systemPackages = [ pkgs.sbctl ]; - fileSystems."/" = { device = "rpool/local/root"; fsType = "zfs";