nixos-config/nixos/hosts/kanako-hkg0/hardware-configuration.nix

15 lines
212 B
Nix
Raw Normal View History

2024-12-13 01:08:04 +08:00
{ modulesPath, ... }:
{
imports = [
(modulesPath + "/profiles/qemu-guest.nix")
];
boot.initrd.availableKernelModules = [
"ahci"
"xhci_pci"
"virtio_pci"
"sr_mod"
"virtio_blk"
];
}