nixos/home/Ronin.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
483 B
Nix

{ ... }:
{
imports = [
./work.nix
./desktop/plasma/default.nix
];
programs.plasma = {
# input.touchpads = [
# {
# disableWhileTyping = true;
# enable = true;
# name = "DELL0A21:00 0488:1024 Touchpad";
# naturalScroll = true;
# productId = "1024";
# tapToClick = true;
# vendorId = "0488";
# }
# ];
configFile = {
bluedevilglobalrc.Global.launchState.value = "disable";
};
};
}