summary refs log tree commit diff stats
path: root/system/settings/hardware/keyboardio-model01.nix
blob: 9c44a9167a4472fa7bbd6cbbb131bc9f7f01f0eb (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";
}