nixpkgs/modules/installer/cd-dvd/installation-cd-graphical.nix
Eelco Dolstra 6646268c95 * This should no longer be needed.
svn path=/nixos/trunk/; revision=26331
2011-03-15 18:47:56 +00:00

15 lines
273 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;
}