From 3dbd439dc4a1db54d5d68decdfe365b5c187c41a Mon Sep 17 00:00:00 2001 From: Joseph Hanson Date: Sun, 7 Jul 2024 10:11:05 -0500 Subject: [PATCH] s01 needs systemd. --- nixos/profiles/hw-hp-s01.nix | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/nixos/profiles/hw-hp-s01.nix b/nixos/profiles/hw-hp-s01.nix index a911ba1..a019ff2 100644 --- a/nixos/profiles/hw-hp-s01.nix +++ b/nixos/profiles/hw-hp-s01.nix @@ -6,14 +6,10 @@ }; boot = { - loader = { - grub = { - enable = true; - zfsSupport = true; - device = "nodev"; - mirroredBoots = [ - { devices = [ "nodev" ]; path = "/boot"; } - ]; + loader = { + systemd-boot.enable = true; + efi = { + canTouchEfiVariables = true; }; }; };