b024940384
svn path=/nixos/trunk/; revision=30156
19 lines
434 B
Nix
19 lines
434 B
Nix
# This module defines a NixOS installation CD that contains X11 and
|
|
# KDE 4.
|
|
|
|
{ config, pkgs, ... }:
|
|
|
|
{
|
|
require = [
|
|
./installation-cd-base.nix
|
|
../../profiles/graphical.nix
|
|
];
|
|
|
|
# Provide wicd for easy wireless configuration.
|
|
networking.wicd.enable = true;
|
|
|
|
# KDE complains if power management is disabled (to be precise, if
|
|
# there is no power management backend such as upower).
|
|
powerManagement.enable = true;
|
|
}
|