diff --git a/nixos/modules/hardware/corsair/default.nix b/nixos/modules/hardware/corsair/default.nix new file mode 100644 index 0000000..c67bd77 --- /dev/null +++ b/nixos/modules/hardware/corsair/default.nix @@ -0,0 +1,9 @@ +{ config, pkgs, ... }: + +{ + services.hardware.openrgb = { + enable = true; + package = pkgs.openrgb-with-all-plugins; + motherboard = "intel"; + }; +}