summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--modules/hardware/keyboardio-model01.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/hardware/keyboardio-model01.nix b/modules/hardware/keyboardio-model01.nix
index 33a3fd6..7a624f5 100644
--- a/modules/hardware/keyboardio-model01.nix
+++ b/modules/hardware/keyboardio-model01.nix
@@ -4,4 +4,10 @@
     SUBSYSTEMS=="usb", ATTRS{idVendor}=="1209", ATTRS{idProduct}=="2300", SYMLINK+="model01", ENV{ID_MM_DEVICE_IGNORE}:="1", ENV{ID_MM_CANDIDATE}:="0"
     SUBSYSTEMS=="usb", ATTRS{idVendor}=="1209", ATTRS{idProduct}=="2301", SYMLINK+="model01", ENV{ID_MM_DEVICE_IGNORE}:="1", ENV{ID_MM_CANDIDATE}:="0"
   '';
+
+  environment.systemPackages = with pkgs; [
+    arduino_core
+  ];
+
+  environment.variables.ARDUINO_PATH = "${pkgs.arduino_core}/share/arduino";
 }