nixos-config/hosts/nixos-laptop/config/boot.nix
2026-07-10 13:22:08 +02:00

14 lines
344 B
Nix

{ pkgs, ... }:
{
# grub utilisé pour le bootloader
boot.kernelPackages = pkgs.linuxPackages;
boot.loader.grub = {
enable = true;
device = "nodev";
efiSupport = true;
useOSProber = true;
# nombre de configurations à garder en mémoire
configurationLimit = 5;
};
boot.loader.efi.canTouchEfiVariables = true;
}