1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/modules/profiles/graphical.nix

18 lines
302 B
Nix
Raw Normal View History

# 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;
desktopManager.default = "kde4";
desktopManager.kde4.enable = true;
};
}