From ad59ddc9dd899f6eeb413cfe01f994bd5dc09f7a Mon Sep 17 00:00:00 2001 From: Nolan Darilek Date: Wed, 18 Jun 2025 09:34:08 -0500 Subject: [PATCH] Switch hub to systemd-boot. --- hosts/hub/default.nix | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/hosts/hub/default.nix b/hosts/hub/default.nix index 5bc5534..e32c8c7 100644 --- a/hosts/hub/default.nix +++ b/hosts/hub/default.nix @@ -37,17 +37,12 @@ ./apps/open-webui.nix ]; - boot.loader.grub = { - enable = true; - zfsSupport = true; - efiSupport = true; - efiInstallAsRemovable = true; - mirroredBoots = [ - { - devices = [ "nodev" ]; - path = "/boot"; - } - ]; + boot = { + loader = { + efi.canTouchEfiVariables = true; + systemd-boot.enable = true; + }; + supportedFilesystems = [ "zfs" ]; }; networking = {