nix-config/modules/optional/xserver.nix

22 lines
481 B
Nix
Raw Normal View History

2023-09-13 17:40:57 +02:00
{
# Configure keymap in X11
services.xserver = {
enable = true;
displayManager.startx.enable = true;
autoRepeatDelay = 235;
autoRepeatInterval = 60;
videoDrivers = ["modesetting"];
libinput = {
enable = true;
mouse.accelProfile = "flat";
touchpad = {
accelProfile = "flat";
2023-09-24 20:43:44 +02:00
accelSpeed = "1";
2023-09-13 17:40:57 +02:00
naturalScrolling = true;
disableWhileTyping = true;
};
};
};
services.autorandr.enable = true;
}