From 325196ce2f498f09979e9b42d785636b461e3394 Mon Sep 17 00:00:00 2001 From: Jordan Holt Date: Mon, 19 Feb 2024 22:36:25 +0000 Subject: [PATCH] Add ONKYO communication to Pi --- hosts/pi/default.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/hosts/pi/default.nix b/hosts/pi/default.nix index 80a9c73..291b3ba 100644 --- a/hosts/pi/default.nix +++ b/hosts/pi/default.nix @@ -231,7 +231,16 @@ }; }; + # Connection to ONKYO HT-R990 + networking.interfaces.end0 = { + ipv4.addresses = [{ + address = "172.16.0.1"; + prefixLength = 30; + }]; + }; + environment.systemPackages = with pkgs; [ + python311Packages.onkyo-eiscp libraspberrypi raspberrypi-eeprom ];