diff options
| author | schererleander <leander@schererleander.de> | 2025-07-29 02:04:35 +0200 |
|---|---|---|
| committer | schererleander <leander@schererleander.de> | 2025-07-29 02:04:35 +0200 |
| commit | 7b3bf7557d4cd2d3263425cbfa15350b4c3ed361 (patch) | |
| tree | 8814f7dfce6d0fd732f7a785d253a9c7971ab58e /hosts/desktop/wooting.nix | |
| parent | e9452ac723b4459b9da06122b6e4e60726030934 (diff) | |
chore: rename hosts
Diffstat (limited to 'hosts/desktop/wooting.nix')
| -rw-r--r-- | hosts/desktop/wooting.nix | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/hosts/desktop/wooting.nix b/hosts/desktop/wooting.nix new file mode 100644 index 0000000..e6217cd --- /dev/null +++ b/hosts/desktop/wooting.nix @@ -0,0 +1,30 @@ +{ config, lib, pkgs, ... }: + +{ + options.wooting.enable = lib.mkEnableOption "Enable Wooting udev rules"; + config = lib.mkIf config.wooting.enable { + services.udev.extraRules = '' + # Wooting One Legacy + SUBSYSTEM=="hidraw", ATTRS{idVendor}=="03eb", ATTRS{idProduct}=="ff01", TAG+="uaccess" + SUBSYSTEM=="usb", ATTRS{idVendor}=="03eb", ATTRS{idProduct}=="ff01", TAG+="uaccess" + + # Wooting One update mode + SUBSYSTEM=="hidraw", ATTRS{idVendor}=="03eb", ATTRS{idProduct}=="2402", TAG+="uaccess" + + # Wooting Two Legacy + SUBSYSTEM=="hidraw", ATTRS{idVendor}=="03eb", ATTRS{idProduct}=="ff02", TAG+="uaccess" + SUBSYSTEM=="usb", ATTRS{idVendor}=="03eb", ATTRS{idProduct}=="ff02", TAG+="uaccess" + + # Wooting Two update mode + SUBSYSTEM=="hidraw", ATTRS{idVendor}=="03eb", ATTRS{idProduct}=="2403", TAG+="uaccess" + + # Generic Wootings + SUBSYSTEM=="hidraw", ATTRS{idVendor}=="31e3", TAG+="uaccess" + SUBSYSTEM=="usb", ATTRS{idVendor}=="31e3", TAG+="uaccess" + ''; + + environment.systemPackages = with pkgs; [ + wootility + ]; + }; +}
\ No newline at end of file |
