nixos/modules/features/ckb-next.nix
2026-05-17 18:21:44 +00:00

10 lines
273 B
Nix

{ self, inputs, ... }: {
flake.nixosModules.ckb-next = { inputs, ... }: {
hardware.ckb-next = {
enable = true;
package = pkgs.ckb-next.overrideAttrs (old: {
cmakeFlags = (old.cmakeFlags or [ ]) ++ [ "-DUSE_DBUS_MENU=0" ];
});
};
};
}