diff --git a/hosts/physical/crow/hardware-configuration.nix b/hosts/physical/crow/hardware-configuration.nix index e840e6c..fa13fac 100644 --- a/hosts/physical/crow/hardware-configuration.nix +++ b/hosts/physical/crow/hardware-configuration.nix @@ -32,5 +32,10 @@ hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; # Enable support for Corsair Scimitar - hardware.ckb-next.enable = true; + hardware.ckb-next = { + enable = true; + package = pkgs.ckb-next.overrideAttrs (old: { + cmakeFlags = (old.cmakeFlags or [ ]) ++ [ "-DUSE_DBUS_MENU=0" ]; + }); + }; }