14 lines
358 B
Nix
14 lines
358 B
Nix
# ==========================================
|
|
# BOOT CONFIGURATION
|
|
# ==========================================
|
|
{ config, pkgs, ... }:
|
|
|
|
{
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.systemd-boot.configurationLimit = 10;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
# Use the latest kernel
|
|
boot.kernelPackages = pkgs.linuxPackages_latest;
|
|
}
|