Files
flocon/machines/genepi/boot.nix
2025-05-16 15:46:47 +02:00

20 lines
271 B
Nix

{ config, ... }:
{
boot.initrd.availableKernelModules = [
"xhci_pci"
"usbhid"
"usb_storage"
];
boot.loader = {
grub.enable = false;
generic-extlinux-compatible.enable = true;
};
boot.supportedFilesystems = [
"btrfs"
"vfat"
];
}