summary refs log tree commit diff stats
path: root/system/modules/hardware/keyboardio-model01.nix
blob: 7a624f5671fdce141813016bd4b960e3c08d0294 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ config, pkgs, ... }:

{ services.udev.extraRules = ''
    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";
}