mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 15:15:52 +05:30
12 lines
194 B
Nix
12 lines
194 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
environment.systemPackages = [ pkgs.openrgb-with-all-plugins ];
|
||
|
|
||
|
# OpenRGB setup
|
||
|
services.hardware.openrgb = {
|
||
|
enable = true;
|
||
|
motherboard = "amd";
|
||
|
};
|
||
|
}
|