Files
nixos-config/system/hardware/openrgb.nix
2023-06-20 22:08:25 -05:00

12 lines
194 B
Nix

{ config, pkgs, ... }:
{
environment.systemPackages = [ pkgs.openrgb-with-all-plugins ];
# OpenRGB setup
services.hardware.openrgb = {
enable = true;
motherboard = "amd";
};
}