Files
nixos/modules/peripherals.nix
T
2026-06-10 19:34:36 +02:00

22 lines
290 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
];
}