From d476060709bcb661cf490779370334ed4d6756b8 Mon Sep 17 00:00:00 2001 From: Joseph Hanson Date: Sat, 13 Jul 2024 18:00:59 -0500 Subject: [PATCH] switch to legacy --- nixos/profiles/hw-supermicro.nix | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/nixos/profiles/hw-supermicro.nix b/nixos/profiles/hw-supermicro.nix index 31b164b..127db91 100644 --- a/nixos/profiles/hw-supermicro.nix +++ b/nixos/profiles/hw-supermicro.nix @@ -3,8 +3,17 @@ with lib; { boot = { loader = { - systemd-boot.enable = true; - efi.canTouchEfiVariables = true; + grub = { + enable = true; + zfsSupport = true; + device = "nodev"; + mirroredBoots = [ + { devices = [ "nodev" ]; path = "/boot"; } + ]; + }; + efi = { + canTouchEfiVariables = true; + }; }; };