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