Systemd/boot: Difference between revisions
Appearance
→Usage: added option is recommended https://github.com/NixOS/nixpkgs/blob/10e7ad5bbcb421fe07e3a4ad53a634b0cd57ffac/nixos/modules/system/boot/loader/systemd-boot/systemd-boot.nix#L213 |
m formatting |
||
| Line 12: | Line 12: | ||
boot.loader.systemd-boot.editor = false; | boot.loader.systemd-boot.editor = false; | ||
</nowiki> | </nowiki> | ||
}} | |||
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}}. | ||
Latest revision as of 13:42, 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:
❄︎ /etc/nixos/configuration.nix
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.