9 lines
155 B
Nix
9 lines
155 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = [ pkgs.openrgb-with-all-plugins ];
|
|
services.hardware.openrgb = {
|
|
enable = true;
|
|
};
|
|
}
|