Files
nixos-conf/system/defaults/boot.nix
2025-12-02 11:09:10 -07:00

10 lines
169 B
Nix

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