nixos-config/modules/core/bootloader.nix

8 lines
207 B
Nix
Raw Normal View History

2023-11-05 11:40:44 +01:00
{ pkgs, ... }:
{
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
2024-02-10 15:03:00 +01:00
boot.loader.systemd-boot.configurationLimit = 5;
2023-11-05 11:40:44 +01:00
boot.kernelPackages = pkgs.linuxPackages_lqx;
}