10 lines
169 B
Nix
10 lines
169 B
Nix
{config, pkgs, ...}:
|
|
|
|
{
|
|
boot.loader = {
|
|
systemd-boot.enable = true;
|
|
efi.canTouchEfiVariables = true;
|
|
};
|
|
boot.kernelPackages = pkgs.linuxPackages_latest;
|
|
}
|