From 221979ac22881e863f0de9e9257e4911cccba5fb Mon Sep 17 00:00:00 2001 From: KnightArtorias Date: Fri, 26 Dec 2025 18:01:48 +0000 Subject: [PATCH] Remove dbusmenu-qt5 dependency from ckb-next build --- hosts/physical/crow/hardware-configuration.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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" ]; + }); + }; }