1
Fork 0
satellite/modules/xserver.nix
2020-04-12 15:09:13 +03:00

26 lines
544 B
Nix

{ ... }: {
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 = "3.5";
# who thought letting this be true by default was a good idea
tappingDragLock = false;
};
};
hardware.opengl.enable = true;
}