8 lines
211 B
Nix
8 lines
211 B
Nix
{ pkgs, ... }:
|
|
{
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
boot.loader.systemd-boot.configurationLimit = 10;
|
|
boot.kernelPackages = pkgs.linuxPackages_latest;
|
|
}
|