cfg/mod/boot.nix
2025-03-27 00:00:05 +01:00

13 lines
219 B
Nix

{ pkgs, ... }:
{
boot.loader = {
efi.canTouchEfiVariables = true;
grub = {
enable = true;
efiSupport = true;
device = "nodev";
};
};
boot.kernelPackages = pkgs.linuxPackages_6_13;
}