790368e315
installation-cd-minimal.nix is now 2.6.32. Added most of its extra tools to installation-cd-base.nix. * Put memtest86 at the bottom of the GRUB menu. (There is currently no good way to do this other than to change the module inclusion order.) svn path=/nixos/trunk/; revision=19188
18 lines
494 B
Nix
18 lines
494 B
Nix
# This module defines a small NixOS installation CD. It does not
|
|
# contain any graphical stuff.
|
|
|
|
{config, pkgs, ...}:
|
|
|
|
{
|
|
require = [./installation-cd-base.nix];
|
|
|
|
installer.configModule = "./nixos/modules/installer/cd-dvd/installation-cd-minimal.nix";
|
|
|
|
# Don't include X libraries.
|
|
services.sshd.forwardX11 = false;
|
|
services.dbus.enable = false; # depends on libX11
|
|
services.hal.enable = false; # depends on dbus
|
|
fonts.enableFontConfig = false;
|
|
fonts.enableCoreFonts = false;
|
|
}
|