ergodox flashing tool

This commit is contained in:
Till 2025-10-13 16:21:42 +02:00
parent 4e590e6be8
commit 049c8cca9d
2 changed files with 10 additions and 1 deletions

9
system/ergodox.nix Normal file
View file

@ -0,0 +1,9 @@
{ config, pkgs, ... }:
{
services.udev = {
extraRules = ''
KERNEL=="hidraw*", SUBSYSTEM=="hidraw", MODE="0660", GROUP="wheel"
'';
};
}