13 lines
219 B
Nix
13 lines
219 B
Nix
{ pkgs, ... }:
|
|
{
|
|
boot.loader = {
|
|
efi.canTouchEfiVariables = true;
|
|
grub = {
|
|
enable = true;
|
|
efiSupport = true;
|
|
device = "nodev";
|
|
};
|
|
};
|
|
|
|
boot.kernelPackages = pkgs.linuxPackages_6_13;
|
|
}
|