From 7dfc0591d80f96884e98ad2dd20ba914bbac53f1 Mon Sep 17 00:00:00 2001 From: Maurice Zhou Date: Thu, 2 Dec 2021 08:27:43 +0100 Subject: [PATCH] NixOS: mount /boot/efi Signed-off-by: Maurice Zhou --- .../NixOS/Root on ZFS/2-system-configuration.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/Getting Started/NixOS/Root on ZFS/2-system-configuration.rst b/docs/Getting Started/NixOS/Root on ZFS/2-system-configuration.rst index d603554..86836e7 100644 --- a/docs/Getting Started/NixOS/Root on ZFS/2-system-configuration.rst +++ b/docs/Getting Started/NixOS/Root on ZFS/2-system-configuration.rst @@ -339,8 +339,9 @@ System Configuration grub.zfsSupport = true; # for systemd-autofs grub.extraPrepareConfig = '' - mkdir -p /boot/efis + mkdir -p /boot/efis /boot/efi for i in /boot/efis/*; do mount $i ; done + mount /boot/efi ''; grub.extraInstallCommands = '' export ESP_MIRROR=$(mktemp -d -p /tmp)