17 lines
333 B
Nix
17 lines
333 B
Nix
{lib, ...}: {
|
|
# Disable systemd-boot
|
|
boot.loader = {
|
|
systemd-boot = {
|
|
enable = false;
|
|
};
|
|
|
|
efi.canTouchEfiVariables = false;
|
|
};
|
|
|
|
# Enables the generation of /boot/extlinux/extlinux.conf
|
|
boot.loader.generic-extlinux-compatible.enable = true;
|
|
|
|
# firmware
|
|
hardware.enableRedistributableFirmware = true;
|
|
}
|