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; + }; }; };