1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-09 22:33:40 +02:00
nixos-hardware/raspberry-pi/4/overlay.nix

19 lines
345 B
Nix

{
simple-pi4-overlay = { target, status }: {
name = "${target}-${status}-overlay";
dtsText = ''
/dts-v1/;
/plugin/;
/ {
compatible = "brcm,bcm2711";
fragment@0 {
target = <&${target}>;
__overlay__ {
status = "${status}";
};
};
};
'';
};
}