2010-02-15 23:27:51 +00:00
|
|
|
# This module contains the basic configuration for building a NixOS
|
|
|
|
# installation CD.
|
|
|
|
|
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
with pkgs.lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
pkgs2storeContents = l : map (x: { object = x; symlink = "none"; }) l;
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
2010-09-25 10:33:03 +01:00
|
|
|
require = [
|
|
|
|
./system-tarball.nix
|
|
|
|
|
|
|
|
# Profiles of this basic installation.
|
|
|
|
../../profiles/base.nix
|
|
|
|
../../profiles/installation-device.nix
|
|
|
|
];
|
2010-02-15 23:27:51 +00:00
|
|
|
|
|
|
|
# To speed up further installation of packages, include the complete stdenv
|
|
|
|
# in the Nix store of the tarball.
|
|
|
|
tarball.storeContents = pkgs2storeContents [ pkgs.stdenv pkgs.klibc pkgs.klibcShrunk ];
|
|
|
|
|
2010-09-08 17:53:36 +01:00
|
|
|
tarball.contents =
|
2010-09-17 18:25:46 +01:00
|
|
|
[ { source = config.boot.kernelPackages.kernel + "/" + config.system.boot.loader.kernelFile;
|
2010-09-16 20:24:52 +01:00
|
|
|
target = "/boot/" + config.system.boot.loader.kernelFile;
|
2010-09-08 17:53:36 +01:00
|
|
|
}
|
|
|
|
];
|
|
|
|
|
2010-02-15 23:27:51 +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-10-31 19:34:39 +00:00
|
|
|
jobs.openssh.startOn = pkgs.lib.mkOverrideTemplate 50 {} "";
|
2010-02-15 23:27:51 +00:00
|
|
|
}
|