mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-08 19:46:10 +01:00
rockchip/rk3328: init
This commit is contained in:
parent
9d5dedae84
commit
76a98e3958
2 changed files with 17 additions and 0 deletions
|
|
@ -7,6 +7,7 @@ let
|
||||||
cfg = config.hardware.rockchip;
|
cfg = config.hardware.rockchip;
|
||||||
in {
|
in {
|
||||||
imports = [
|
imports = [
|
||||||
|
./rk3328
|
||||||
./rk3399
|
./rk3399
|
||||||
./rk3588
|
./rk3588
|
||||||
];
|
];
|
||||||
|
|
|
||||||
16
rockchip/rk3328/default.nix
Normal file
16
rockchip/rk3328/default.nix
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
{ lib
|
||||||
|
, pkgs
|
||||||
|
, config
|
||||||
|
, ...
|
||||||
|
}:
|
||||||
|
let
|
||||||
|
cfg = config.hardware.rockchip.rk3328;
|
||||||
|
in {
|
||||||
|
options.hardware.rockchip.rk3328 = {
|
||||||
|
enable = lib.mkEnableOption "Rockchip RK3328 support";
|
||||||
|
};
|
||||||
|
|
||||||
|
config = lib.mkIf cfg.enable {
|
||||||
|
hardware.rockchip.enable = true;
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue