push
This commit is contained in:
19
modules/openrgb.nix
Normal file
19
modules/openrgb.nix
Normal file
@@ -0,0 +1,19 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
services.hardware.openrgb = {
|
||||
enable = true;
|
||||
|
||||
motherboard = "intel"; # i9-14900K
|
||||
};
|
||||
|
||||
users.users.bug.extraGroups = [ "i2c" ];
|
||||
|
||||
hardware.i2c.enable = true;
|
||||
|
||||
boot.kernelModules = [
|
||||
"i2c-dev" # I2C device access for motherboard RGB
|
||||
"i2c-i801" # Intel I2C controller (Z790 chipset)
|
||||
"snd-aloop" # Audio loopback for monitoring
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user