Files
nixos-config/system/hardware/openrgb.nix
2024-03-24 12:14:10 -04:00

9 lines
155 B
Nix

{ config, lib, pkgs, ... }:
{
environment.systemPackages = [ pkgs.openrgb-with-all-plugins ];
services.hardware.openrgb = {
enable = true;
};
}