nixos/home/Northstar.nix
Evie Litherland-Smith 4005eff6ac Temp comment out input.touchpads
Some issue with a missing library, perhaps a nixpkgs mismatch issue?
2024-08-07 11:52:38 +01:00

24 lines
488 B
Nix

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