Files
nixos-hardware/radxa/rock-4c-plus/default.nix
ZHANG Yuntian bbf25ca940 radxa: allow platformFirmware to be overridable
Previously, it was a product-level option with a default value.
2025-02-24 08:22:39 +00:00

21 lines
273 B
Nix

{ lib
, pkgs
, config
, ...
}: {
imports = [
../.
../../rockchip
];
config = {
hardware = {
radxa.enable = true;
rockchip = {
rk3399.enable = true;
platformFirmware = lib.mkDefault pkgs.ubootRock4CPlus;
};
};
};
}