Files
flocon/hosts/genepi/boot.nix
2025-01-29 21:34:17 +01: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"
];
}