2009-06-11 09:51:27 +00:00
|
|
|
# This module contains the basic configuration for building a NixOS
|
|
|
|
# installation CD.
|
2009-06-05 15:10:15 +00:00
|
|
|
|
2009-11-10 21:42:38 +00:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
with pkgs.lib;
|
2009-06-05 15:10:15 +00:00
|
|
|
|
2009-06-08 22:45:45 +00:00
|
|
|
let
|
|
|
|
|
2009-06-09 15:23:03 +00:00
|
|
|
options = {
|
|
|
|
|
2009-11-10 21:42:38 +00:00
|
|
|
system.nixosVersion = mkOption {
|
2009-06-09 15:23:03 +00:00
|
|
|
default = "${builtins.readFile ../../../VERSION}";
|
|
|
|
description = ''
|
|
|
|
NixOS version number.
|
|
|
|
'';
|
|
|
|
};
|
2009-06-22 10:03:58 +00:00
|
|
|
|
2009-11-10 21:42:38 +00:00
|
|
|
installer.configModule = mkOption {
|
2009-06-22 10:03:58 +00:00
|
|
|
example = "./nixos/modules/installer/cd-dvd/installation-cd.nix";
|
|
|
|
description = ''
|
|
|
|
Filename of the configuration module that builds the CD
|
|
|
|
configuration. Must be specified to support reconfiguration
|
|
|
|
in live CDs.
|
|
|
|
'';
|
|
|
|
};
|
2009-06-09 15:23:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-06-08 22:45:45 +00:00
|
|
|
# We need a copy of the Nix expressions for Nixpkgs and NixOS on the
|
|
|
|
# CD. We put them in a tarball because accessing that many small
|
|
|
|
# files from a slow device like a CD-ROM takes too long. !!! Once
|
|
|
|
# we use squashfs, maybe we won't need this anymore.
|
|
|
|
makeTarball = tarName: input: pkgs.runCommand "tarball" {inherit tarName;}
|
|
|
|
''
|
|
|
|
ensureDir $out
|
|
|
|
(cd ${input} && tar cvfj $out/${tarName} . \
|
|
|
|
--exclude '*~' --exclude 'result')
|
|
|
|
'';
|
|
|
|
|
|
|
|
# Put the current directory in a tarball.
|
2009-11-10 21:42:38 +00:00
|
|
|
nixosTarball = makeTarball "nixos.tar.bz2" (cleanSource ../../..);
|
2009-06-08 22:45:45 +00:00
|
|
|
|
|
|
|
# Put Nixpkgs in a tarball.
|
2009-11-10 21:42:38 +00:00
|
|
|
nixpkgsTarball = makeTarball "nixpkgs.tar.bz2" (cleanSource pkgs.path);
|
|
|
|
|
|
|
|
includeSources = true;
|
2009-06-08 22:45:45 +00:00
|
|
|
|
2009-06-10 12:34:58 +00:00
|
|
|
|
|
|
|
# A dummy /etc/nixos/configuration.nix in the booted CD that
|
|
|
|
# rebuilds the CD's configuration (and allows the configuration to
|
|
|
|
# be modified, of course, providing a true live CD). Problem is
|
|
|
|
# that we don't really know how the CD was built - the Nix
|
|
|
|
# expression language doesn't allow us to query the expression being
|
|
|
|
# evaluated. So we'll just hope for the best.
|
|
|
|
dummyConfiguration = pkgs.writeText "configuration.nix"
|
|
|
|
''
|
|
|
|
{config, pkgs, ...}:
|
|
|
|
|
|
|
|
{
|
2009-06-22 10:03:58 +00:00
|
|
|
require = [${config.installer.configModule}];
|
2009-06-10 12:34:58 +00:00
|
|
|
|
|
|
|
# Add your own options below and run "nixos-rebuild switch".
|
|
|
|
# E.g.,
|
2010-03-11 17:02:53 +00:00
|
|
|
# services.openssh.enable = true;
|
2009-06-10 12:34:58 +00:00
|
|
|
}
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
2009-06-08 22:45:45 +00:00
|
|
|
in
|
|
|
|
|
2009-06-05 15:10:15 +00:00
|
|
|
{
|
2009-06-09 13:14:43 +00:00
|
|
|
require =
|
2009-06-09 15:23:03 +00:00
|
|
|
[ options
|
2009-06-09 13:14:43 +00:00
|
|
|
./memtest.nix
|
2010-01-03 17:13:30 +00:00
|
|
|
./iso-image.nix
|
2010-09-25 09:32:27 +00:00
|
|
|
../../profiles/base.nix
|
2010-09-25 09:32:37 +00:00
|
|
|
|
|
|
|
# Enable devices which are usually scanned, because we don't know the
|
|
|
|
# target system.
|
|
|
|
../scan/detected.nix
|
|
|
|
../scan/not-detected.nix
|
2009-06-09 13:14:43 +00:00
|
|
|
];
|
2009-06-05 15:10:15 +00:00
|
|
|
|
2009-06-09 15:23:03 +00:00
|
|
|
# ISO naming.
|
|
|
|
isoImage.isoName = "nixos-${config.system.nixosVersion}-${pkgs.stdenv.system}.iso";
|
|
|
|
|
2009-06-22 16:38:11 +00:00
|
|
|
isoImage.volumeID = "NIXOS_INSTALL_CD_${config.system.nixosVersion}";
|
2009-06-09 15:23:03 +00:00
|
|
|
|
2009-06-05 15:10:15 +00:00
|
|
|
# Show the manual.
|
2009-07-14 16:27:46 +00:00
|
|
|
services.nixosManual.showManual = true;
|
2009-06-05 15:10:15 +00:00
|
|
|
|
|
|
|
# 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;
|
|
|
|
|
2009-06-05 17:19:30 +00:00
|
|
|
# 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"];
|
|
|
|
|
2009-06-05 15:10:15 +00:00
|
|
|
# nixos-install will do a pull from this channel to speed up the
|
|
|
|
# installation.
|
|
|
|
installer.nixpkgsURL = http://nixos.org/releases/nixpkgs/channels/nixpkgs-unstable;
|
2009-06-05 17:19:30 +00:00
|
|
|
|
|
|
|
boot.postBootCommands =
|
|
|
|
''
|
|
|
|
export PATH=${pkgs.gnutar}/bin:${pkgs.bzip2}/bin:$PATH
|
|
|
|
|
2009-06-10 12:34:58 +00:00
|
|
|
# Provide a mount point for nixos-install.
|
2009-06-05 17:19:30 +00:00
|
|
|
mkdir -p /mnt
|
|
|
|
|
2009-06-10 12:34:58 +00:00
|
|
|
# Provide the NixOS/Nixpkgs sources in /etc/nixos. This is required
|
|
|
|
# for nixos-install.
|
2009-11-10 21:42:38 +00:00
|
|
|
${optionalString includeSources ''
|
|
|
|
echo "unpacking the NixOS/Nixpkgs sources..."
|
|
|
|
mkdir -p /etc/nixos/nixos
|
|
|
|
tar xjf ${nixosTarball}/nixos.tar.bz2 -C /etc/nixos/nixos
|
|
|
|
mkdir -p /etc/nixos/nixpkgs
|
|
|
|
tar xjf ${nixpkgsTarball}/nixpkgs.tar.bz2 -C /etc/nixos/nixpkgs
|
|
|
|
chown -R root.root /etc/nixos
|
|
|
|
''}
|
2009-06-10 12:34:58 +00:00
|
|
|
|
|
|
|
# Provide a configuration for the CD/DVD itself, to allow users
|
|
|
|
# to run nixos-rebuild to change the configuration of the
|
|
|
|
# running system on the CD/DVD.
|
|
|
|
cp ${dummyConfiguration} /etc/nixos/configuration.nix
|
2009-06-05 17:19:30 +00:00
|
|
|
'';
|
2009-06-08 22:45:45 +00:00
|
|
|
|
2009-06-09 13:27:50 +00:00
|
|
|
# Some more help text.
|
2009-06-09 12:02:52 +00:00
|
|
|
services.mingetty.helpLine =
|
|
|
|
''
|
|
|
|
|
2009-06-11 09:51:27 +00:00
|
|
|
Log in as "root" with an empty password. ${
|
|
|
|
if config.services.xserver.enable then
|
|
|
|
"Type `start xserver' to start\nthe graphical user interface."
|
|
|
|
else ""
|
|
|
|
}
|
2009-06-09 12:02:52 +00:00
|
|
|
'';
|
2009-12-16 23:52:02 +00:00
|
|
|
|
2009-06-09 13:27:50 +00:00
|
|
|
# To speed up installation a little bit, include the complete stdenv
|
|
|
|
# in the Nix store on the CD.
|
2010-01-06 20:51:10 +00:00
|
|
|
isoImage.storeContents = [ pkgs.stdenv pkgs.klibc pkgs.klibcShrunk ];
|
2010-01-03 17:13:30 +00:00
|
|
|
|
|
|
|
# Allow sshd to be started manually through "start sshd". It should
|
|
|
|
# not be started by default on the installation CD because the
|
|
|
|
# default root password is empty.
|
2010-03-11 17:02:53 +00:00
|
|
|
services.openssh.enable = true;
|
2010-09-03 19:10:59 +00:00
|
|
|
jobs.sshd.startOn = pkgs.lib.mkOverrideTemplate 50 {} "";
|
2010-08-08 13:55:35 +00:00
|
|
|
|
|
|
|
# Enable wpa_supplicant, but don't start it by default.
|
|
|
|
networking.enableWLAN = true;
|
2010-09-03 19:10:59 +00:00
|
|
|
jobs.wpa_supplicant.startOn = pkgs.lib.mkOverrideTemplate 50 {} "";
|
2009-06-05 15:10:15 +00:00
|
|
|
}
|