From dc0fb80c330ae68ad560c6d5da33ed380a6fedb2 Mon Sep 17 00:00:00 2001 From: Ben Wolsieffer Date: Thu, 14 Sep 2023 19:59:17 -0400 Subject: [PATCH] p-3400: move ESP from /boot/esp to /boot/efi --- machines/p-3400/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/machines/p-3400/default.nix b/machines/p-3400/default.nix index 58d2e80..5bd2172 100644 --- a/machines/p-3400/default.nix +++ b/machines/p-3400/default.nix @@ -9,7 +9,7 @@ options = [ "x-systemd.device-timeout=0" ]; }; - "/boot/esp" = { + "/boot/efi" = { device = "/dev/disk/by-uuid/6B22-0731"; fsType = "vfat"; # Prevent unprivileged users from being able to read secrets in the initrd @@ -23,7 +23,7 @@ systemd-boot.enable = true; efi = { canTouchEfiVariables = true; - efiSysMountPoint = "/boot/esp"; + efiSysMountPoint = "/boot/efi"; }; };