nixos-config/modules/core/bootloader.nix

12 lines
222 B
Nix
Raw Normal View History

2023-11-05 11:40:44 +01:00
{ pkgs, ... }:
{
2024-06-21 09:35:48 +02:00
boot = {
kernelPackages = pkgs.linuxPackages_latest;
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
systemd-boot.configurationLimit = 10;
};
};
2023-11-05 11:40:44 +01:00
}