system/machine: enable bluetooth

This commit is contained in:
Dmitriy Pleshevskiy 2022-10-03 13:04:35 +03:00
parent e2d80e205e
commit f9a0027483
Signed by: pleshevskiy
GPG key ID: 1B59187B161C0215

View file

@ -29,16 +29,19 @@ in
}; };
}; };
services.xserver = { # enable bluetooth
libinput = { hardware.bluetooth.enable = true;
enable = true; services.blueman.enable = true;
mouse = {
accelSpeed = "1.0"; # configure touchpad
}; services.xserver.libinput = {
touchpad = { enable = true;
accelSpeed = "1.0"; mouse = {
disableWhileTyping = true; accelSpeed = "1.0";
}; };
touchpad = {
accelSpeed = "1.0";
disableWhileTyping = true;
}; };
}; };
} }