Corsair: Difference between revisions

From NixOS Wiki
(Category:Hardware, link to corsair, beginning improved.)
(Improved template usage, fixed typo)
 
Line 1: Line 1:
[https://www.corsair.com CORSAIR] is an American computer peripherals and gaming brand.  
[https://www.corsair.com CORSAIR] is an American computer peripherals and gaming brand.  


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


</syntaxhighlight>
</syntaxhighlight>
Further configuration can be done: see the hardware.ckb-next options on [https://search.nixos.org/options?type=packages&query=hardware.ckb-next search.nixos.org].
See{{nixos:option|hardware.ckb-next}}for more configuration options.


== Limitations ==
== Limitations ==

Latest revision as of 09:44, 26 June 2024

CORSAIR is an American computer peripherals and gaming brand.

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

Example config for ckb-next

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

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

Seehardware.ckb-nextfor more configuration options.

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!