move monolith

This commit is contained in:
2026-03-28 14:24:53 +01:00
parent 0df3b7ebde
commit 5e6abe53f2
12 changed files with 471 additions and 15 deletions

View File

@@ -0,0 +1,17 @@
{
flake.nixosModules.ckb-next = {pkgs, ...}: {
# Corsair drivers
hardware.ckb-next = {
enable = true;
# Workarount until https://github.com/NixOS/nixpkgs/issues/444209
# is fixed
package = pkgs.ckb-next.overrideAttrs (prev: {
cmakeFlags =
(prev.cmakeFlags or [])
++ [
"-DUSE_DBUS_MENU=0"
];
});
};
};
}