nixos-config/modules/core/bootloader.nix
Frost-Phoenix 3bab7dd16e update
2024-03-27 18:26:16 +01:00

8 lines
211 B
Nix

{ pkgs, ... }:
{
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.loader.systemd-boot.configurationLimit = 10;
boot.kernelPackages = pkgs.linuxPackages_latest;
}