nixos/home/Ronin.nix

26 lines
526 B
Nix
Raw Normal View History

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