NixOS-Configuration/bootloader.nix

10 lines
243 B
Nix
Raw Normal View History

2023-06-30 22:46:44 +00:00
{ config, ... }:
2023-06-30 22:38:56 +00:00
{
# 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;
}