nixpkgs/modules/services/x11/xserver/xserver.conf
Eelco Dolstra 5ebdee3577 * Continued refactoring the tree: moved most Upstart jobs (namely
those that run daemons) to modules/services.  This probably broke
  some things since there are a few relative paths in modules
  (e.g. imports of system/ids.nix).
* Moved some PAM modules out of etc/pam.d to the directories of NixOS
  modules that use them.

svn path=/nixos/branches/modular-nixos/; revision=15717
2009-05-24 23:13:23 +00:00

91 lines
1.5 KiB
Plaintext

Section "Files"
# Font directories.
@xfs@
@fontPaths@
# Module (driver) directories.
@modulePaths@
EndSection
Section "ServerFlags"
Option "AllowMouseOpenFail" "on"
EndSection
Section "Module"
Load "bitmap"
Load "int10"
Load "vbe"
@moduleSection@
@extraModules@
EndSection
@synapticsInputDevice@
Section "Monitor"
Identifier "Monitor[0]"
Option "DPMS"
# HorizSync 28-49
# VertRefresh 43-75
@extraMonitorSettings@
EndSection
Section "Screen"
Identifier "Screen[0]"
Device "Device[0]"
Monitor "Monitor[0]"
DefaultDepth @defaultDepth@
SubSection "Display"
Depth 16
Modes @resolutions@
@extraDisplaySettings@
@virtualScreen@
EndSubSection
SubSection "Display"
Depth 24
Modes @resolutions@
@extraDisplaySettings@
@virtualScreen@
EndSubSection
#SubSection "Display"
# Depth 32
# Modes @resolutions@
# @extraDisplaySettings@
#EndSubSection
@screen@
EndSection
Section "Device"
Identifier "Device[0]"
Driver "@videoDriver@"
Option "Clone" "@isClone@"
@device@
@internalAGPGART@
@extraDeviceConfig@
EndSection
Section "ServerLayout"
Identifier "Layout[all]"
@setCorePointer@
Screen "Screen[0]"
@serverLayoutOptions@
# If you want to disable HAL-based configuration, set AutoAddDevices to 0
# Option "AutoAddDevices" "0"
EndSection
Section "Extensions"
@extensions@
EndSection
Section "DRI"
Mode 0666 # !!! FIX THIS!
EndSection