Ahwxorg/modules/core/bootloader.nix
2024-06-21 09:35:48 +02:00

11 lines
222 B
Nix

{ pkgs, ... }:
{
boot = {
kernelPackages = pkgs.linuxPackages_latest;
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
systemd-boot.configurationLimit = 10;
};
};
}