2011-11-08 16:58:59 +01:00
|
|
|
# Provide a basic configuration for installation devices like CDs.
|
|
|
|
{ config, pkgs, modules, ... }:
|
2010-09-25 11:32:43 +02:00
|
|
|
|
2010-09-25 11:32:48 +02:00
|
|
|
with pkgs.lib;
|
2010-09-25 11:32:43 +02:00
|
|
|
|
2010-09-25 11:32:48 +02:00
|
|
|
{
|
2013-07-03 13:58:38 +02:00
|
|
|
imports =
|
|
|
|
[ # Enable devices which are usually scanned, because we don't know the
|
|
|
|
# target system.
|
|
|
|
../installer/scan/detected.nix
|
|
|
|
../installer/scan/not-detected.nix
|
2010-09-25 11:32:52 +02:00
|
|
|
|
2013-07-03 13:58:38 +02:00
|
|
|
# Allow "nixos-rebuild" to work properly by providing
|
|
|
|
# /etc/nixos/configuration.nix.
|
|
|
|
./clone-config.nix
|
|
|
|
];
|
2010-09-25 11:32:48 +02:00
|
|
|
|
|
|
|
config = {
|
|
|
|
|
|
|
|
# Show the manual.
|
|
|
|
services.nixosManual.showManual = true;
|
|
|
|
|
|
|
|
# Let the user play Rogue on TTY 8 during the installation.
|
|
|
|
services.rogue.enable = true;
|
|
|
|
|
|
|
|
# Disable some other stuff we don't need.
|
|
|
|
security.sudo.enable = false;
|
|
|
|
|
|
|
|
# Include only the en_US locale. This saves 75 MiB or so compared to
|
|
|
|
# the full glibcLocales package.
|
|
|
|
i18n.supportedLocales = ["en_US.UTF-8/UTF-8" "en_US/ISO-8859-1"];
|
|
|
|
|
|
|
|
# Some more help text.
|
|
|
|
services.mingetty.helpLine =
|
|
|
|
''
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2010-09-25 11:32:48 +02:00
|
|
|
Log in as "root" with an empty password. ${
|
2013-01-22 12:52:13 +01:00
|
|
|
optionalString config.services.xserver.enable
|
|
|
|
"Type `start display-manager' to\nstart the graphical user interface."}
|
2010-09-25 11:32:48 +02:00
|
|
|
'';
|
2010-09-25 11:32:43 +02:00
|
|
|
|
2013-07-09 15:59:57 +02:00
|
|
|
# Allow sshd to be started manually through "start sshd".
|
2010-09-25 11:32:48 +02:00
|
|
|
services.openssh.enable = true;
|
|
|
|
jobs.sshd.startOn = pkgs.lib.mkOverride 50 "";
|
2010-09-25 11:32:43 +02:00
|
|
|
|
2010-09-25 11:32:48 +02:00
|
|
|
# Enable wpa_supplicant, but don't start it by default.
|
2012-03-04 22:15:34 +01:00
|
|
|
networking.wireless.enable = true;
|
2010-09-25 11:32:48 +02:00
|
|
|
jobs.wpa_supplicant.startOn = pkgs.lib.mkOverride 50 "";
|
2012-04-23 02:41:37 +02:00
|
|
|
|
|
|
|
# Tell the Nix evaluator to garbage collect more aggressively.
|
|
|
|
# This is desirable in memory-constrained environments that don't
|
|
|
|
# (yet) have swap set up.
|
|
|
|
environment.shellInit =
|
|
|
|
''
|
|
|
|
export GC_INITIAL_HEAP_SIZE=100000
|
|
|
|
'';
|
2010-09-25 11:32:48 +02:00
|
|
|
};
|
|
|
|
}
|