dotfiles/nixos/modules/xserver.nix

19 lines
328 B
Nix
Raw Normal View History

2024-10-06 15:25:05 -05:00
{
services = {
xserver = {
enable = true;
xkb.layout = "us";
};
libinput = {
enable = true;
touchpad = {
tapping = true;
naturalScrolling = false;
};
mouse.accelProfile = "flat";
touchpad.accelProfile = "flat";
};
};
console.useXkbConfig = true;
}