feat(udev): add udev rules for qmk and vial

This commit is contained in:
Mohammad Rafiq 2025-04-09 09:28:27 +08:00
parent 74b315fc39
commit 73c0ebb467
No known key found for this signature in database
2 changed files with 14 additions and 0 deletions

13
modules/hardware/udev.nix Normal file
View file

@ -0,0 +1,13 @@
{ pkgs, ... }:
{
hardware.keyboard.qmk.enable = true;
services.udev = {
packages = with pkgs; [
vial
via
qmk
qmk-udev-rules
qmk_hid
];
};
}