Files
nixos-config/glasshouse-desktop/sys/bootloader.nix
2024-10-10 03:57:13 -04:00

11 lines
206 B
Nix

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