2011-11-08 15:58:59 +00:00
|
|
|
# Provide a basic configuration for installation devices like CDs.
|
2015-06-10 10:04:26 +00:00
|
|
|
{ config, pkgs, lib, ... }:
|
2010-09-25 09:32:43 +00:00
|
|
|
|
2014-04-14 14:26:48 +00:00
|
|
|
with lib;
|
2010-09-25 09:32:43 +00:00
|
|
|
|
2010-09-25 09:32:48 +00:00
|
|
|
{
|
2013-07-03 11:58:38 +00: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 09:32:52 +00:00
|
|
|
|
2013-07-03 11:58:38 +00:00
|
|
|
# Allow "nixos-rebuild" to work properly by providing
|
|
|
|
# /etc/nixos/configuration.nix.
|
|
|
|
./clone-config.nix
|
2015-06-10 10:04:26 +00:00
|
|
|
|
|
|
|
# Include a copy of Nixpkgs so that nixos-install works out of
|
|
|
|
# the box.
|
|
|
|
../installer/cd-dvd/channel.nix
|
2013-07-03 11:58:38 +00:00
|
|
|
];
|
2010-09-25 09:32:48 +00:00
|
|
|
|
|
|
|
config = {
|
|
|
|
|
2015-06-10 10:04:26 +00:00
|
|
|
# Enable in installer, even if the minimal profile disables it.
|
2018-09-24 21:01:24 +00:00
|
|
|
documentation.enable = mkForce true;
|
2015-06-10 10:04:26 +00:00
|
|
|
|
2010-09-25 09:32:48 +00:00
|
|
|
# Show the manual.
|
2018-09-25 21:31:43 +00:00
|
|
|
documentation.nixos.enable = mkForce true;
|
2010-09-25 09:32:48 +00:00
|
|
|
services.nixosManual.showManual = true;
|
|
|
|
|
|
|
|
# Let the user play Rogue on TTY 8 during the installation.
|
2017-08-29 14:15:15 +00:00
|
|
|
#services.rogue.enable = true;
|
2010-09-25 09:32:48 +00:00
|
|
|
|
|
|
|
# Disable some other stuff we don't need.
|
2018-08-17 04:43:58 +00:00
|
|
|
security.sudo.enable = mkDefault false;
|
|
|
|
services.udisks2.enable = mkDefault false;
|
2010-09-25 09:32:48 +00:00
|
|
|
|
2015-04-14 09:48:09 +00:00
|
|
|
# Automatically log in at the virtual consoles.
|
|
|
|
services.mingetty.autologinUser = "root";
|
|
|
|
|
2010-09-25 09:32:48 +00:00
|
|
|
# Some more help text.
|
|
|
|
services.mingetty.helpLine =
|
|
|
|
''
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2015-04-14 09:48:09 +00:00
|
|
|
The "root" account has an empty password. ${
|
2013-01-22 11:52:13 +00:00
|
|
|
optionalString config.services.xserver.enable
|
2016-07-04 07:54:17 +00:00
|
|
|
"Type `systemctl start display-manager' to\nstart the graphical user interface."}
|
2010-09-25 09:32:48 +00:00
|
|
|
'';
|
2010-09-25 09:32:43 +00:00
|
|
|
|
2017-01-23 21:25:28 +00:00
|
|
|
# Allow sshd to be started manually through "systemctl start sshd".
|
2017-01-23 21:15:59 +00:00
|
|
|
services.openssh = {
|
|
|
|
enable = true;
|
|
|
|
# Allow password login to the installation, if the user sets a password via "passwd"
|
|
|
|
# It is safe as root doesn't have a password by default and SSH is disabled by default
|
|
|
|
permitRootLogin = "yes";
|
|
|
|
};
|
2013-07-09 14:12:34 +00:00
|
|
|
systemd.services.sshd.wantedBy = mkOverride 50 [];
|
2010-09-25 09:32:43 +00:00
|
|
|
|
2010-09-25 09:32:48 +00:00
|
|
|
# Enable wpa_supplicant, but don't start it by default.
|
2015-06-10 10:04:26 +00:00
|
|
|
networking.wireless.enable = mkDefault true;
|
2016-01-06 03:52:56 +00:00
|
|
|
systemd.services.wpa_supplicant.wantedBy = mkOverride 50 [];
|
2012-04-23 00:41:37 +00: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.
|
2018-10-28 09:48:00 +00:00
|
|
|
environment.variables.GC_INITIAL_HEAP_SIZE = "1M";
|
2013-09-18 03:18:34 +00:00
|
|
|
|
2015-06-10 10:04:26 +00:00
|
|
|
# Make the installer more likely to succeed in low memory
|
|
|
|
# environments. The kernel's overcommit heustistics bite us
|
|
|
|
# fairly often, preventing processes such as nix-worker or
|
|
|
|
# download-using-manifests.pl from forking even if there is
|
|
|
|
# plenty of free memory.
|
|
|
|
boot.kernel.sysctl."vm.overcommit_memory" = "1";
|
|
|
|
|
|
|
|
# To speed up installation a little bit, include the complete
|
2017-01-23 19:56:00 +00:00
|
|
|
# stdenv in the Nix store on the CD.
|
2018-02-27 19:20:37 +00:00
|
|
|
system.extraDependencies = with pkgs;
|
|
|
|
[
|
|
|
|
stdenv
|
|
|
|
stdenvNoCC # for runCommand
|
|
|
|
busybox
|
|
|
|
jq # for closureInfo
|
|
|
|
];
|
2015-06-10 10:04:26 +00:00
|
|
|
|
2017-01-09 09:59:37 +00:00
|
|
|
# Show all debug messages from the kernel but don't log refused packets
|
|
|
|
# because we have the firewall enabled. This makes installs from the
|
|
|
|
# console less cumbersome if the machine has a public IP.
|
|
|
|
networking.firewall.logRefusedConnections = mkDefault false;
|
|
|
|
|
2018-08-06 19:09:47 +00:00
|
|
|
# Allow the user to log in as root without a password.
|
|
|
|
users.users.root.initialHashedPassword = "";
|
2010-09-25 09:32:48 +00:00
|
|
|
};
|
|
|
|
}
|