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