nix/module/common/Bootloader.nix

25 lines
509 B
Nix

{ ... }: {
# Enable non-free firmware.
hardware.enableRedistributableFirmware = true;
# Configure bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.loader.systemd-boot.configurationLimit = 7;
boot.initrd.kernelModules = [ "dm-snapshot" ];
boot.initrd.availableKernelModules = [
"ahci"
"ata_piix"
"mptspi"
"nvme"
"sd_mod"
"sr_mod"
"usb_storage"
"usbhid"
"xhci_pci"
];
# /tmp on tmpfs.
boot.tmp.useTmpfs = true;
}