8f5f70b292
log in as root automatically. svn path=/nixos/trunk/; revision=26014
17 lines
337 B
Nix
17 lines
337 B
Nix
# This module defines a NixOS configuration that contains X11 and
|
|
# KDE 4.
|
|
{ config, pkgs, ... }:
|
|
|
|
{
|
|
require = [ ./base.nix ];
|
|
|
|
services.xserver = {
|
|
enable = true;
|
|
autorun = true;
|
|
defaultDepth = 24;
|
|
displayManager.auto.enable = true;
|
|
desktopManager.default = "kde4";
|
|
desktopManager.kde4.enable = true;
|
|
};
|
|
}
|