9 lines
184 B
Nix
9 lines
184 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# Bootloader.
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
boot.loader.systemd-boot.configurationLimit = 5;
|
|
}
|