nixos-config/hosts/nixos-laptop/config/boot.nix
afoucaultc df94405cef yeeee
2026-07-07 20:42:01 +02:00

12 lines
262 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;
}