nixos-config/nixos/hosts/reisen-lax0/hardware-configuration.nix
2024-11-28 01:14:34 +08:00

16 lines
228 B
Nix

{ modulesPath, ... }:
{
imports = [
(modulesPath + "/profiles/qemu-guest.nix")
];
boot.initrd.availableKernelModules = [
"ahci"
"sym53c8xx"
"xhci_pci"
"virtio_pci"
"sr_mod"
"virtio_blk"
];
}