nixos/device-tree: use new overlay syntax in example

Since dtc 1.4.7 (released in 2018), there has been a much nicer syntax for
device tree overlays. This commit converts the dtsText example to use this
syntax.
main
Ben Wolsieffer 2 years ago
parent d64abb978c
commit 8e4b3323d1
  1. 13
      nixos/modules/hardware/device-tree.nix

@ -36,14 +36,11 @@ let
/plugin/;
/ {
compatible = "raspberrypi";
fragment@0 {
target-path = "/soc";
__overlay__ {
pps {
compatible = "pps-gpio";
status = "okay";
};
};
};
&{/soc} {
pps {
compatible = "pps-gpio";
status = "okay";
};
};
'';

Loading…
Cancel
Save