mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
9ac80c1f15
This is needed to get touchpad working in the installer on several laptops. Tested on a Thinkpad X250.
16 lines
391 B
Nix
16 lines
391 B
Nix
# This module defines a NixOS configuration that contains X11 and
|
|
# KDE 4. It's used by the graphical installation CD.
|
|
|
|
{ config, pkgs, ... }:
|
|
|
|
{
|
|
services.xserver = {
|
|
enable = true;
|
|
displayManager.kdm.enable = true;
|
|
desktopManager.kde4.enable = true;
|
|
synaptics.enable = true; # for touchpad support on many laptops
|
|
};
|
|
|
|
environment.systemPackages = [ pkgs.glxinfo ];
|
|
}
|