10 lines
249 B
Nix
10 lines
249 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
# 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;
|
||
|
}
|