Corsair: Difference between revisions

From NixOS Wiki
(Initial Commit: added example configuration & limitations)
 
(Category:Hardware, link to corsair, beginning improved.)
Line 1: Line 1:
The following page talks about running [https://github.com/ckb-next/ckb-next ckb-next] on NixOS to configure your Corsair peripherals!
[https://www.corsair.com CORSAIR] is an American computer peripherals and gaming brand.


== Example config ==
Its possible to configure its keyboards an mice with an open source driver: [https://github.com/ckb-next/ckb-next ckb-next] 
== Example config for ckb-next ==
<syntaxhighlight lang="nixos">
<syntaxhighlight lang="nixos">
# /etc/nixos/configuration.nix
# /etc/nixos/configuration.nix
Line 19: Line 20:


If you find a way to automate this, please append to the wiki!
If you find a way to automate this, please append to the wiki!
[[Category:Hardware]]

Revision as of 15:21, 18 June 2024

CORSAIR is an American computer peripherals and gaming brand.

Its possible to configure its keyboards an mice with an open source driver: ckb-next

Example config for ckb-next

# /etc/nixos/configuration.nix
{ config, pkgs, ... }:

{
  # ...
  hardware.ckb-next.enable = true;
}

Further configuration can be done: see the hardware.ckb-next options on search.nixos.org.

Limitations

Doing the above will enable the background service and install ckb-next. Yet (as of writing) you still have to manually run/open ckb-next on launch before it works.


If you find a way to automate this, please append to the wiki!