Jump to content

Systemd/boot: Difference between revisions

From Official NixOS Wiki
Pigs (talk | contribs)
m add breadcrumb to main systemd page
Norude (talk | contribs)
m formatting
 
(One intermediate revision by the same user not shown)
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>
}}
}}

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.