Skip to content

Commit cefac46

Browse files
committed
Enabled i2c bus
1 parent de89de4 commit cefac46

File tree

2 files changed

+25
-3
lines changed

2 files changed

+25
-3
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ nix run github:serokell/deploy-rs .#zero2w -- --ssh-user $SSH_USER --hostname $Z
3838
- Note that `nixos-rebuild --target-host` would work instead of using `deploy-rs`. but as `nixos-rebuild` is not available on Darwin, I'm using `deploy-rs` that works both on NixOS and Darwin.
3939
- I still couldn't find a way to use `boot.kernelPackages = pkgs.linuxKernel.packages.linux_rpi3`.
4040
- the `sdImage.extraFirmwareConfig` option is not ideal as it cannot update `config.txt` after it is created in the sd image.
41+
- An overlay in the `hardware.deviceTree` has activated the i2c bus. This means that the `i2c-tools` are now working!
4142

4243
## See also
4344
- [this issue](https://github.com/NixOS/nixpkgs/issues/216886)

zero2w.nix

+24-3
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,30 @@
4545
};
4646
};
4747

48-
# Keep this to make sure wifi works
49-
hardware.enableRedistributableFirmware = lib.mkForce false;
50-
hardware.firmware = [pkgs.raspberrypiWirelessFirmware];
48+
hardware = {
49+
enableRedistributableFirmware = lib.mkForce false;
50+
firmware = [pkgs.raspberrypiWirelessFirmware]; # Keep this to make sure wifi works
51+
i2c.enable = true;
52+
deviceTree.filter = "bcm2837-rpi-zero*.dtb";
53+
deviceTree.overlays = [
54+
{
55+
name = "enable-i2c";
56+
dtsText = ''
57+
/dts-v1/;
58+
/plugin/;
59+
/ {
60+
compatible = "brcm,bcm2837";
61+
fragment@0 {
62+
target = <&i2c1>;
63+
__overlay__ {
64+
status = "okay";
65+
};
66+
};
67+
};
68+
'';
69+
}
70+
];
71+
};
5172

5273
boot = {
5374
kernelPackages = pkgs.linuxPackages_rpi02w;

0 commit comments

Comments
 (0)