NixOS-Configuration/bootloader.nix
2023-07-01 00:46:44 +02:00

10 lines
243 B
Nix

{ config, ... }:
{
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.loader.systemd-boot.configurationLimit=2;
boot.initrd.systemd.enable = true;
boot.plymouth.enable = true;
}