mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-14 06:59:41 +01:00
9 lines
137 B
Nix
9 lines
137 B
Nix
{ pkgs, lib, ... }:
|
|
{
|
|
boot.initrd.kernelModules = [
|
|
# PCIe/NVMe
|
|
"nvme"
|
|
"pcie_rockchip_host"
|
|
"phy_rockchip_pcie"
|
|
];
|
|
}
|