summary refs log tree commit diff stats
path: root/modules/hardware/keyboardio-model01.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/hardware/keyboardio-model01.nix')
-rw-r--r--modules/hardware/keyboardio-model01.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/hardware/keyboardio-model01.nix b/modules/hardware/keyboardio-model01.nix
new file mode 100644
index 0000000..33a3fd6
--- /dev/null
+++ b/modules/hardware/keyboardio-model01.nix
@@ -0,0 +1,7 @@
+{ 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"
+  '';
+}