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