nixos/home/Northstar.nix
Evie Litherland-Smith 8e9986ab12 Use plasma-manager lib for configuring touchpads
Move bluedevilglobalrc config to be machine-specific (bluetooth off at
startup on laptops, on at startup on desktops, only specified if
machine has bluetooth capability)
2024-08-06 15:00:54 +01:00

26 lines
531 B
Nix

{ ... }:
{
imports = [
./personal.nix
./desktop/plasma/default.nix
];
programs.plasma = {
input.touchpads = [
{
disableWhileTyping = true;
enable = true;
leftHanded = false;
middleMouseEmulation = true;
name = "SYNA32AA:00 06CB:CE17 Touchpad";
naturalScroll = true;
productId = "52759";
tapToClick = true;
vendorId = "1739";
}
];
configFile = {
bluedevilglobalrc.Global.launchState.value = "disable";
};
};
}