13 lines
223 B
Nix
13 lines
223 B
Nix
{ lib, pkgs, ... }:
|
|
{
|
|
hardware.ckb-next.enable = true;
|
|
|
|
services.libinput.mouse = {
|
|
accelProfile = "flat";
|
|
accelSpeed = 0.0;
|
|
};
|
|
|
|
quick.services = {
|
|
ckb-next = "${lib.getExe pkgs.ckb-next} -c -b";
|
|
};
|
|
}
|