nixos_PC/shared/home_manager/plasma_manager/input.nix

17 lines
427 B
Nix
Raw Permalink Normal View History

2024-08-24 15:38:09 +02:00
{ plasma-manager, ... }:
{
# Find attributes at /proc/bus/input/devices
# converting vendorId and productId from hex to base10 is broken currently
# https://github.com/nix-community/plasma-manager/issues/306
programs.plasma.input.touchpads = [{
enable = true;
name = "SynPS/2 Synaptics TouchPad";
vendorId = "0002";
productId = "0007";
naturalScroll = true;
}];
}
# vim: tabstop=2 softtabstop=2