mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 23:00:14 +01:00
12 lines
220 B
Nix
12 lines
220 B
Nix
{ pkgs, ... }:
|
|
{
|
|
services.hardware.openrgb = {
|
|
enable = true;
|
|
package = pkgs.openrgb-with-all-plugins;
|
|
motherboard = "amd";
|
|
server = {
|
|
port = 6742;
|
|
# autoStart = true;
|
|
};
|
|
};
|
|
}
|