10 lines
129 B
Nix
10 lines
129 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
# Enable necessary udev rules.
|
|
services.udev.packages = with pkgs; [
|
|
openrgb
|
|
qmk-udev-rules
|
|
];
|
|
}
|