From e19bccf819d5e0145d987facc132623ba6313f2f Mon Sep 17 00:00:00 2001 From: NullBite Date: Tue, 26 Dec 2023 04:16:20 -0500 Subject: [PATCH] Update bootloader recommendations in example --- host-configuration.nix.example | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/host-configuration.nix.example b/host-configuration.nix.example index ed644f6..33e08c4 100644 --- a/host-configuration.nix.example +++ b/host-configuration.nix.example @@ -18,12 +18,13 @@ boot.loader = { efi = { canTouchEfiVariables = true; - # efiSysMountPoint = "/efi"; + # nixos doesn't use a separate /efi and doesn't need it because the images are tiny + # efiSysMountPoint = "/boot"; }; - grub = { + systemd-boot = { enable = true; - efiSupport = true; - device = "nodev"; + netbootxyz.enable = true; + memtest86.enable = true; }; }; }