nixos-config/modules/core/bootloader.nix

8 lines
157 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;
boot.kernelPackages = pkgs.linuxPackages_lqx;
}