From cb43a667126aaaaa30f5780b1e31babb7a1b7ffd Mon Sep 17 00:00:00 2001 From: Joseph Hanson Date: Fri, 10 May 2024 10:21:49 -0500 Subject: [PATCH] Missing boot parameters. --- nixos/hosts/durincore/default.nix | 1 - nixos/profiles/hw-thinkpad-t470.nix | 10 ++++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/nixos/hosts/durincore/default.nix b/nixos/hosts/durincore/default.nix index 2d5031a..0d24ca4 100644 --- a/nixos/hosts/durincore/default.nix +++ b/nixos/hosts/durincore/default.nix @@ -15,7 +15,6 @@ # TODO build this in from flake host names networking.hostName = "durincore"; - fileSystems."/" = { device = "rpool/root"; fsType = "zfs"; diff --git a/nixos/profiles/hw-thinkpad-t470.nix b/nixos/profiles/hw-thinkpad-t470.nix index 567a0ef..e1a17dd 100644 --- a/nixos/profiles/hw-thinkpad-t470.nix +++ b/nixos/profiles/hw-thinkpad-t470.nix @@ -3,6 +3,16 @@ with lib; { boot = { + # Use the systemd-boot EFI boot loader. + loader = { + systemd-boot = { + enable = true; + }; + efi = { + canTouchEfiVariables = true; + }; + }; + # Kernel mods initrd = { availableKernelModules = [ "xhci_pci" "nvme" "usb_storage" "sd_mod" ]; kernelModules = [ ];