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

View file

@ -22,7 +22,7 @@
./system/desktop.nix ./system/desktop.nix
./system/hardware/nova.nix ./system/hardware/nova.nix
./system/gnome.nix ./system/gnome.nix
# ./system/cosmic.nix ./system/ergodox.nix
./system/steam.nix ./system/steam.nix
./system/btrbk.nix ./system/btrbk.nix
./system/yubikey.nix ./system/yubikey.nix

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"
'';
};
}