about summary refs log tree commit diff
path: root/nixos/doc/manual
diff options
context:
space:
mode:
authorWill Fancher <elvishjerricco@gmail.com>2024-02-27 20:35:03 -0500
committerGitHub <noreply@github.com>2024-02-27 20:35:03 -0500
commita587a6a35772f2b1692e87333c9d94ad477a4fd0 (patch)
tree62e935dd7747b3edec87da43a0c258915877577a /nixos/doc/manual
parent031978580c094886c72b3ae8a475566b4592f9f6 (diff)
parentb470b4432d8a3068379d515705b6cc2416fb92e6 (diff)
downloadnixlib-a587a6a35772f2b1692e87333c9d94ad477a4fd0.tar
nixlib-a587a6a35772f2b1692e87333c9d94ad477a4fd0.tar.gz
nixlib-a587a6a35772f2b1692e87333c9d94ad477a4fd0.tar.bz2
nixlib-a587a6a35772f2b1692e87333c9d94ad477a4fd0.tar.lz
nixlib-a587a6a35772f2b1692e87333c9d94ad477a4fd0.tar.xz
nixlib-a587a6a35772f2b1692e87333c9d94ad477a4fd0.tar.zst
nixlib-a587a6a35772f2b1692e87333c9d94ad477a4fd0.zip
Merge pull request #285401 from sdht0/systemd-boot-xbootldr
 nixos/systemd-boot: Add support for an XBOOTLDR partition
Diffstat (limited to 'nixos/doc/manual')
-rw-r--r--nixos/doc/manual/release-notes/rl-2405.section.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/nixos/doc/manual/release-notes/rl-2405.section.md b/nixos/doc/manual/release-notes/rl-2405.section.md
index 8092fab35b00..e0162372d215 100644
--- a/nixos/doc/manual/release-notes/rl-2405.section.md
+++ b/nixos/doc/manual/release-notes/rl-2405.section.md
@@ -283,6 +283,10 @@ The pre-existing [services.ankisyncd](#opt-services.ankisyncd.enable) has been m
 
 - Cinnamon has been updated to 6.0. Please beware that the [Wayland session](https://blog.linuxmint.com/?p=4591) is still experimental in this release.
 
+- New `boot.loader.systemd-boot.xbootldrMountPoint` allows setting up a separate [XBOOTLDR partition](https://uapi-group.org/specifications/specs/boot_loader_specification/) to store boot files. Useful on systems with a small EFI System partition that cannot be easily repartitioned.
+
+- `boot.loader.systemd-boot` will now verify that `efiSysMountPoint` (and `xbootldrMountPoint` if configured) are mounted partitions.
+
 - `services.postgresql.extraPlugins` changed its type from just a list of packages to also a function that returns such a list.
   For example a config line like ``services.postgresql.extraPlugins = with pkgs.postgresql_11.pkgs; [ postgis ];`` is recommended to be changed to ``services.postgresql.extraPlugins = ps: with ps; [ postgis ];``;