From 4e55cc591986fcedbff605832a5ee323ea7c50c4 Mon Sep 17 00:00:00 2001 From: Emmet Date: Sun, 25 Feb 2024 15:38:51 -0600 Subject: [PATCH] Fixed my boot partition location to be more "standard" --- profiles/homelab/configuration.nix | 2 +- profiles/work/configuration.nix | 2 +- system/hardware-configuration.nix | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/profiles/homelab/configuration.nix b/profiles/homelab/configuration.nix index ae284a3d..8a9b3825 100644 --- a/profiles/homelab/configuration.nix +++ b/profiles/homelab/configuration.nix @@ -31,7 +31,7 @@ # Bootloader boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; - boot.loader.efi.efiSysMountPoint = "/boot/efi"; + boot.loader.efi.efiSysMountPoint = "/boot"; # Networking networking.hostName = systemSettings.hostname; # Define your hostname. diff --git a/profiles/work/configuration.nix b/profiles/work/configuration.nix index 0119f81d..9ddf2cd1 100644 --- a/profiles/work/configuration.nix +++ b/profiles/work/configuration.nix @@ -48,7 +48,7 @@ # Bootloader boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; - boot.loader.efi.efiSysMountPoint = "/boot/efi"; + boot.loader.efi.efiSysMountPoint = "/boot"; # Networking networking.hostName = systemSettings.hostname; # Define your hostname. diff --git a/system/hardware-configuration.nix b/system/hardware-configuration.nix index 8b7fd7c2..fa864e75 100644 --- a/system/hardware-configuration.nix +++ b/system/hardware-configuration.nix @@ -26,7 +26,7 @@ boot.initrd.luks.devices."luks-385106b5-71f7-460e-9a2b-2416f3b54cb6".device = "/dev/disk/by-uuid/385106b5-71f7-460e-9a2b-2416f3b54cb6"; - fileSystems."/boot/efi" = + fileSystems."/boot" = { device = "/dev/disk/by-uuid/F09D-73C9"; fsType = "vfat"; };