project-flake/desktops/aqore-nix/bootloader.nix
2025-10-19 11:14:51 +07:00

26 lines
No EOL
439 B
Nix

{ config, pkgs, ... }:
{
boot = {
initrd.kernelModules = [ "amdgpu" ];
loader = {
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot/efi";
};
grub = {
enable = true;
device = "nodev";
efiSupport = true;
configurationLimit = 8;
gfxmodeEfi = "1920x1080";
forceInstall = true;
extraEntries = ''
menuentry "UEFI Firmware Setup" {
fwsetup
}
'';
};
};
};
}