Files
shed/glasshouse-desktop/sys/bootloader.nix
2024-10-10 03:53:44 -04:00

11 lines
211 B
Nix

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