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;
2023-11-05 19:19:47 +01:00
boot.loader.systemd-boot.configurationLimit = 3;
2023-11-05 11:40:44 +01:00
boot.kernelPackages = pkgs.linuxPackages_lqx;
}