[OpenRGB] Fix

This commit is contained in:
Tibo De Peuter 2023-10-30 10:30:03 +01:00
parent 0d72ee0c84
commit fb66f46e02
5 changed files with 1121 additions and 12 deletions

View file

@ -6,6 +6,14 @@ in {
options.sisyphus.services.openrgb.enable = lib.mkEnableOption "OpenRGB";
config = lib.mkIf cfg.enable {
services.udev.packages = with pkgs; [
openrgb
];
boot.kernelModules = [ "i2c-dev" ];
hardware.i2c.enable = true;
services.hardware.openrgb = {
enable = true;
package = pkgs.openrgb-with-all-plugins;