1
Fork 0
satellite/modules/xserver.nix

24 lines
510 B
Nix
Raw Normal View History

2020-04-08 18:36:58 +02:00
{ ... }: {
services.xserver = {
# Enable the X11 windowing system.
enable = true;
layout = "us";
xkbOptions = "eurosign:e";
# Enable the KDE Desktop Environment.
displayManager.sddm.enable = true;
desktopManager.plasma5.enable = true;
libinput = {
# Enable touchpad support.
enable = true;
naturalScrolling = true;
accelSpeed = "2.5";
# who thought letting this be true by default was a good idea
tappingDragLock = false;
};
};
}