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 = [ ];