nixos/modules/ckb-next.nix

11 lines
273 B
Nix
Raw Normal View History

2026-05-19 00:37:42 +00:00
{ 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" ];
});
};
};
}