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