1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-01 18:43:34 +02:00
nixos-hardware/raspberry-pi/4/cpu-revision.nix
2022-10-07 10:59:54 -04:00

26 lines
432 B
Nix

{ ... }:
{
hardware.deviceTree.overlays = [
{
name = "rpi4-cpu-revision";
dtsText = ''
/dts-v1/;
/plugin/;
/ {
compatible = "raspberrypi,4-model-b";
fragment@0 {
target-path = "/";
__overlay__ {
system {
linux,revision = <0x00d03114>;
};
};
};
};
'';
}
];
}