about summary refs log tree commit diff
path: root/nixos/doc/manual
diff options
context:
space:
mode:
authorSiddhartha <dev@sdht.in>2024-01-31 21:51:12 -0500
committerSiddhartha <dev@sdht.in>2024-02-26 21:55:49 -0500
commitb470b4432d8a3068379d515705b6cc2416fb92e6 (patch)
treee91c011e093718e9fc1743391fcb5ee30b091e6e /nixos/doc/manual
parent04beb0aea211f98820a93ffdec6d1f8d4e0d734a (diff)
downloadnixlib-b470b4432d8a3068379d515705b6cc2416fb92e6.tar
nixlib-b470b4432d8a3068379d515705b6cc2416fb92e6.tar.gz
nixlib-b470b4432d8a3068379d515705b6cc2416fb92e6.tar.bz2
nixlib-b470b4432d8a3068379d515705b6cc2416fb92e6.tar.lz
nixlib-b470b4432d8a3068379d515705b6cc2416fb92e6.tar.xz
nixlib-b470b4432d8a3068379d515705b6cc2416fb92e6.tar.zst
nixlib-b470b4432d8a3068379d515705b6cc2416fb92e6.zip
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 91540e9a0ea5..f9d7dc2d30a8 100644
--- a/nixos/doc/manual/release-notes/rl-2405.section.md
+++ b/nixos/doc/manual/release-notes/rl-2405.section.md
@@ -279,6 +279,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 ];``;