Evie Litherland-Smith
8e9986ab12
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)
26 lines
531 B
Nix
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";
|
|
};
|
|
};
|
|
}
|