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
|
|
|
|
|
|
|
{
|
2013-09-04 11:05:09 +00:00
|
|
|
imports =
|
2012-04-10 21:18:48 +00:00
|
|
|
[ ./memtest.nix
|
2013-07-01 21:13:28 +00:00
|
|
|
./channel.nix
|
2013-07-02 11:52:43 +00:00
|
|
|
./iso-image.nix
|
2010-09-25 09:32:43 +00:00
|
|
|
|
|
|
|
# Profiles of this basic installation CD.
|
2011-11-08 15:58:59 +00:00
|
|
|
../../profiles/all-hardware.nix
|
2010-09-25 09:32:27 +00:00
|
|
|
../../profiles/base.nix
|
2010-09-25 09:32:43 +00:00
|
|
|
../../profiles/installation-device.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.
|
2011-04-20 10:48:52 +00:00
|
|
|
isoImage.isoName = "${config.isoImage.isoBaseName}-${config.system.nixosVersion}-${pkgs.stdenv.system}.iso";
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2013-07-17 17:34:06 +00:00
|
|
|
isoImage.volumeID = substring 0 32 "NIXOS_${config.system.nixosVersion}";
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2013-03-02 19:02:32 +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";
|
|
|
|
|
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.
|
2012-06-22 18:16:55 +00:00
|
|
|
isoImage.storeContents = [ pkgs.stdenv pkgs.busybox ];
|
2009-06-05 15:10:15 +00:00
|
|
|
}
|