ROCKPro64-Server/system/devices/boot/default.nix

25 lines
364 B
Nix
Raw Normal View History

2025-02-28 12:08:04 -05:00
{ ... }:
{
imports = [
./extlinux
./root-reset
2025-02-28 12:08:04 -05:00
];
2025-02-28 19:13:03 -05:00
boot.initrd = {
systemd.enable = true;
kernelModules = [
"ahci"
"dm-snapshot"
"mmc_core"
"pcie_rockchip_host"
"phy_rockchip_pcie"
"rockchip_dfi"
"rockchip_thermal"
"rtc_rk808"
"rockchip_saradc"
"uas"
"fusb302"
];
};
2025-02-28 12:08:04 -05:00
}