13 lines
347 B
Nix
13 lines
347 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
boot.kernelPackages = pkgs.linuxPackages;
|
|
|
|
boot.loader.grub = {
|
|
enable = true;
|
|
device = "nodev";
|
|
efiSupport = true;
|
|
useOSProber = true;
|
|
configurationLimit = 5;
|
|
};
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
}
|