7 lines
131 B
Nix
7 lines
131 B
Nix
|
{ config, ...}:
|
||
|
{
|
||
|
services.libinput = {
|
||
|
enable = !config.machineVars.headless;
|
||
|
touchpad.disableWhileTyping = true;
|
||
|
};
|
||
|
}
|