Files
flocon/machines/genepi/boot.nix
2025-06-05 20:42:15 +02:00

26 lines
449 B
Nix

{ config, ... }:
{
boot.initrd.availableKernelModules = [
"xhci_pci"
"usbhid"
"usb_storage"
];
boot.loader = {
generic-extlinux-compatible.enable = false;
efi.canTouchEfiVariables = true;
systemd-boot.enable = true;
};
nixpkgs.overlays = [
(final: super: {
makeModulesClosure = x: super.makeModulesClosure (x // { allowMissing = true; });
})
];
boot.supportedFilesystems = [
"vfat"
];
}