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

7 lines
131 B
Nix
Raw Normal View History

2024-12-03 13:32:15 +01:00
{ config, ...}:
{
services.libinput = {
enable = !config.machineVars.headless;
touchpad.disableWhileTyping = true;
};
}