at 16.09-beta 391 B view raw
1# This module defines a NixOS configuration that contains X11 and 2# KDE 4. It's used by the graphical installation CD. 3 4{ config, pkgs, ... }: 5 6{ 7 services.xserver = { 8 enable = true; 9 displayManager.kdm.enable = true; 10 desktopManager.kde4.enable = true; 11 synaptics.enable = true; # for touchpad support on many laptops 12 }; 13 14 environment.systemPackages = [ pkgs.glxinfo ]; 15}