omniflake/system/ergodox.nix
2025-10-13 16:21:42 +02:00

9 lines
154 B
Nix

{ config, pkgs, ... }:
{
services.udev = {
extraRules = ''
KERNEL=="hidraw*", SUBSYSTEM=="hidraw", MODE="0660", GROUP="wheel"
'';
};
}