MyNixOS website logo
option

services.hardware.openrgb.motherboard

CPU family of motherboard. Allows for addition motherboard i2c support.

Declarations
Type
null or one of "amd", "intel"
Default
{
  _type = "literalMD";
  text = ''
    if config.hardware.cpu.intel.updateMicrocode then "intel"
    else if config.hardware.cpu.amd.updateMicrocode then "amd"
    else null;
  '';
}