diff --git a/profiles/homelab/configuration.nix b/profiles/homelab/configuration.nix index ae284a3..8a9b382 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 0119f81..9ddf2cd 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 8b7fd7c..fa864e7 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"; };