move monolith
This commit is contained in:
17
modules/hardware/ckb-next.nix
Normal file
17
modules/hardware/ckb-next.nix
Normal 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"
|
||||
];
|
||||
});
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user