2009-06-11 02:51:27 -07:00
|
|
|
# This module defines a NixOS installation CD that contains X11 and
|
|
|
|
# KDE 4.
|
|
|
|
|
2011-01-21 05:38:30 -08:00
|
|
|
{ config, pkgs, ... }:
|
2009-06-11 02:51:27 -07:00
|
|
|
|
|
|
|
{
|
2010-09-25 02:32:57 -07:00
|
|
|
require = [
|
|
|
|
./installation-cd-base.nix
|
|
|
|
../../profiles/graphical.nix
|
|
|
|
];
|
2011-01-21 05:38:30 -08:00
|
|
|
|
2011-02-23 11:11:32 -08:00
|
|
|
# Provide wicd for easy wireless configuration.
|
|
|
|
networking.wicd.enable = true;
|
2009-06-11 02:51:27 -07:00
|
|
|
}
|