nix-dotfiles/hosts/common/services/libinput.nix

7 lines
131 B
Nix

{ config, ...}:
{
services.libinput = {
enable = !config.machineVars.headless;
touchpad.disableWhileTyping = true;
};
}