Files
Nixos-Config/modules/system/boot.nix
2026-04-20 15:08:47 +00:00

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;
}