22 lines
463 B
Nix
22 lines
463 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"
|
|
];
|
|
}
|