28 lines
511 B
Nix
28 lines
511 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
hardware = {
|
|
i2c.enable = true;
|
|
steam-hardware.enable = true;
|
|
};
|
|
|
|
services = {
|
|
hardware.openrgb.enable = true;
|
|
ratbagd.enable = true;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
openrgb
|
|
pciutils
|
|
piper
|
|
solaar
|
|
usbutils
|
|
];
|
|
|
|
# Observed devices:
|
|
# - 048d:5702 Integrated Technology Express RGB LED Controller
|
|
# - 1235:8211 Focusrite Scarlett Solo (3rd Gen.)
|
|
# - 1b1c:1bfd Corsair K70 CORE RGB
|
|
# - 046d:c539 Logitech Lightspeed receiver
|
|
}
|