about summary refs log tree commit diff
path: root/machines/rpi3-amadeus/spi.nix
blob: 8a8f3324ff3bc0e3027d759467a947cc7bc2c158 (plain)
1
2
3
4
5
6
7
8
9
10
11
{ pkgs, ... }:
{
  hardware.deviceTree = {
    enable = true;
    filter = "*rpi*.dtb";
    overlays = [{
      name = "spi";
      dtsFile = ./spi.dts;
    }];
  };
}