nix/system/Bootloader.nix

43 lines
868 B
Nix
Raw Permalink Normal View History

{ ... }:
{
# Enable non-free firmware.
hardware.enableRedistributableFirmware = true;
# Configure bootloader.
boot = {
loader = {
efi.canTouchEfiVariables = true;
2024-04-05 21:13:10 +03:00
# Use systemd to boot.
systemd-boot = {
enable = true;
# Limit the amound of generations availabe for rollback.
# This helps to save storage space.
configurationLimit = 10;
};
};
# Mount /tmp on tmpfs.
tmp.useTmpfs = true;
initrd = {
# Don't really know if I need it. Kept from hardware-configuration.
kernelModules = [ "dm-snapshot" ];
2024-04-14 22:58:11 +03:00
# Kernel modules available for all the hosts.
availableKernelModules = [
"ahci"
"ata_piix"
"mptspi"
"nvme"
"sd_mod"
"sr_mod"
"usb_storage"
"usbhid"
"xhci_pci"
];
};
};
}