nix-config/modules/essentials/bootloader.nix

11 lines
179 B
Nix

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