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 = {
libinput = {
enable = true;
mouse = {
accelSpeed = "1.0";
};
touchpad = {
accelSpeed = "1.0";
disableWhileTyping = true;
};
# enable bluetooth
hardware.bluetooth.enable = true;
services.blueman.enable = true;
# configure touchpad
services.xserver.libinput = {
enable = true;
mouse = {
accelSpeed = "1.0";
};
touchpad = {
accelSpeed = "1.0";
disableWhileTyping = true;
};
};
}