nixos-config/modules/core/bootloader.nix

8 lines
211 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 23:41:56 +01:00
boot.loader.systemd-boot.configurationLimit = 10;
2024-03-27 18:26:16 +01:00
boot.kernelPackages = pkgs.linuxPackages_latest;
2023-11-05 11:40:44 +01:00
}