nix/hosts/quiver/input.nix
2025-07-20 23:42:07 +10:00

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";
};
}