Systemd/boot: Difference between revisions
Appearance
m add breadcrumb to main systemd page |
→Usage: added option is recommended https://github.com/NixOS/nixpkgs/blob/10e7ad5bbcb421fe07e3a4ad53a634b0cd57ffac/nixos/modules/system/boot/loader/systemd-boot/systemd-boot.nix#L213 |
||
| Line 10: | Line 10: | ||
<nowiki> | <nowiki> | ||
boot.loader.systemd-boot.enable = true; | boot.loader.systemd-boot.enable = true; | ||
boot.loader.systemd-boot.editor = false; | |||
</nowiki> | </nowiki> | ||
}} | |name=|lang=}} | ||
For addition systemd-boot module configuration options, refer to {{nixos:option|boot.loader.systemd-boot}}. | For addition systemd-boot module configuration options, refer to {{nixos:option|boot.loader.systemd-boot}}. | ||
Revision as of 13:40, 23 April 2026
systemd-boot is a simple UEFI boot manager. It is the recommended bootloader to use with NixOS.
Usage
To install and enable systemd-boot, add this to your system configuration:
≡︎
boot.loader.systemd-boot.enable = true;
boot.loader.systemd-boot.editor = false;For addition systemd-boot module configuration options, refer to boot.loader.systemd-boot.