1
Fork 0
satellite/modules/xserver.nix
2020-04-19 20:26:10 +03:00

24 lines
457 B
Nix

{ ... }: {
services.xserver = {
# Enable the X11 windowing system.
enable = true;
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";
tappingDragLock = false;
};
};
hardware.opengl.enable = true;
}