Remove dbusmenu-qt5 dependency from ckb-next build

This commit is contained in:
KnightArtorias 2025-12-26 18:01:48 +00:00
parent 51a4cc16a0
commit 221979ac22

View file

@ -32,5 +32,10 @@
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
# Enable support for Corsair Scimitar # 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" ];
});
};
} }