2006-12-11 18:36:57 +01:00
|
|
|
{ platform ? __currentSystem
|
2006-12-11 17:10:23 +01:00
|
|
|
, configuration
|
2008-06-05 17:33:17 +02:00
|
|
|
, nixpkgsPath ? ../../nixpkgs
|
2006-11-12 19:48:47 +01:00
|
|
|
}:
|
2006-11-04 13:00:05 +01:00
|
|
|
|
2006-11-02 18:56:50 +01:00
|
|
|
rec {
|
2008-08-08 21:07:07 +02:00
|
|
|
|
2008-08-06 19:39:05 +02:00
|
|
|
configComponents = [
|
|
|
|
configuration
|
2008-08-08 20:56:58 +02:00
|
|
|
(import ./options.nix)
|
2009-01-02 17:06:52 +01:00
|
|
|
systemPathList
|
2008-08-06 19:39:05 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
noOption = name: values:
|
|
|
|
abort "${name}: Used without option declaration.";
|
2006-11-02 18:56:50 +01:00
|
|
|
|
2006-12-11 16:47:30 +01:00
|
|
|
# Make a configuration object from which we can retrieve option
|
|
|
|
# values.
|
2008-08-06 19:39:05 +02:00
|
|
|
config =
|
2008-11-09 17:44:31 +01:00
|
|
|
pkgs.lib.fixOptionSets
|
2008-08-06 19:39:05 +02:00
|
|
|
(pkgs.lib.mergeOptionSets noOption)
|
|
|
|
pkgs configComponents;
|
2007-11-09 19:49:45 +01:00
|
|
|
|
2008-08-06 19:39:05 +02:00
|
|
|
optionDeclarations =
|
2008-11-09 17:44:31 +01:00
|
|
|
pkgs.lib.fixOptionSetsFun
|
2008-08-06 20:43:53 +02:00
|
|
|
pkgs.lib.filterOptionSets
|
|
|
|
pkgs configComponents
|
|
|
|
config;
|
2006-12-11 16:47:30 +01:00
|
|
|
|
2008-06-05 17:33:17 +02:00
|
|
|
pkgs = import "${nixpkgsPath}/pkgs/top-level/all-packages.nix" {system = platform;};
|
2006-11-02 18:56:50 +01:00
|
|
|
|
2007-11-09 19:49:45 +01:00
|
|
|
manifests = config.installer.manifests; # exported here because nixos-rebuild uses it
|
2007-08-15 14:01:20 +02:00
|
|
|
|
2008-08-08 20:57:07 +02:00
|
|
|
nix = config.environment.nix;
|
2006-11-17 17:38:24 +01:00
|
|
|
|
2008-08-08 20:57:07 +02:00
|
|
|
kernelPackages = config.boot.kernelPackages;
|
2008-05-22 13:59:46 +02:00
|
|
|
|
|
|
|
kernel = kernelPackages.kernel;
|
2006-11-02 23:48:01 +01:00
|
|
|
|
2008-11-18 19:00:09 +01:00
|
|
|
modulesTree = config.system.modulesTree;
|
2008-05-08 17:36:56 +02:00
|
|
|
|
2006-11-03 01:36:08 +01:00
|
|
|
|
2008-08-08 19:34:30 +02:00
|
|
|
# The initial ramdisk.
|
|
|
|
initialRamdiskStuff = import ../boot/boot-stage-1.nix {
|
2008-11-23 02:29:20 +01:00
|
|
|
inherit pkgs config;
|
2006-11-02 18:56:50 +01:00
|
|
|
};
|
|
|
|
|
2008-08-08 19:34:30 +02:00
|
|
|
initialRamdisk = initialRamdiskStuff.initialRamdisk;
|
|
|
|
|
2006-11-02 23:48:01 +01:00
|
|
|
|
2008-02-08 16:59:15 +01:00
|
|
|
# NixOS installation/updating tools.
|
|
|
|
nixosTools = import ../installer {
|
2008-11-23 02:29:20 +01:00
|
|
|
inherit pkgs config;
|
2007-02-06 14:09:25 +01:00
|
|
|
};
|
|
|
|
|
2006-11-08 10:31:45 +01:00
|
|
|
|
2007-01-15 18:19:41 +01:00
|
|
|
# NSS modules. Hacky!
|
2008-11-18 19:00:09 +01:00
|
|
|
nssModules = config.system.nssModules.list;
|
2007-01-15 18:19:41 +01:00
|
|
|
|
2008-11-18 19:00:09 +01:00
|
|
|
nssModulesPath = config.system.nssModules.path;
|
2007-01-15 18:19:41 +01:00
|
|
|
|
|
|
|
|
2007-03-04 02:16:24 +01:00
|
|
|
# Wrapper around modprobe to set the path to the modules.
|
2008-11-18 19:00:09 +01:00
|
|
|
modprobe = config.system.sbin.modprobe;
|
2007-03-04 02:16:24 +01:00
|
|
|
|
|
|
|
|
2007-11-15 18:16:16 +01:00
|
|
|
# Environment variables for running Nix.
|
2008-11-18 19:00:09 +01:00
|
|
|
nixEnvVars = config.nix.envVars;
|
2007-11-15 18:16:16 +01:00
|
|
|
|
2009-01-02 17:06:52 +01:00
|
|
|
|
2006-12-11 16:32:10 +01:00
|
|
|
# The static parts of /etc.
|
2009-01-02 17:06:52 +01:00
|
|
|
etc = config.system.build.etc;
|
2006-12-09 03:51:42 +01:00
|
|
|
|
2008-08-08 21:07:07 +02:00
|
|
|
|
2007-10-05 09:25:13 +02:00
|
|
|
# Font aggregation
|
2009-01-02 17:07:39 +01:00
|
|
|
fontDir = config.system.build.x11Fonts;
|
2006-12-11 16:47:30 +01:00
|
|
|
|
2008-08-08 21:07:07 +02:00
|
|
|
|
2006-12-11 16:47:30 +01:00
|
|
|
# The wrapper setuid programs (since we can't have setuid programs
|
2007-01-15 15:43:56 +01:00
|
|
|
# in the Nix store).
|
2009-01-02 17:06:52 +01:00
|
|
|
wrapperDir = config.system.wrapperDir;
|
2007-01-15 15:43:56 +01:00
|
|
|
|
2006-11-28 18:34:27 +01:00
|
|
|
setuidWrapper = import ../helpers/setuid {
|
|
|
|
inherit (pkgs) stdenv;
|
2007-01-15 15:43:56 +01:00
|
|
|
inherit wrapperDir;
|
2006-11-28 18:34:27 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2008-08-06 17:48:12 +02:00
|
|
|
# A patched `mount' command that looks in a directory in the Nix
|
|
|
|
# store instead of in /sbin for mount helpers (like mount.ntfs-3g or
|
|
|
|
# mount.cifs).
|
2008-11-18 19:00:09 +01:00
|
|
|
mount = config.system.sbin.mount;
|
2008-08-06 17:48:12 +02:00
|
|
|
|
|
|
|
|
2006-12-09 20:25:23 +01:00
|
|
|
# The packages you want in the boot environment.
|
2009-01-02 17:06:52 +01:00
|
|
|
# This have to be split up.
|
|
|
|
systemPathList = {
|
|
|
|
system = {
|
|
|
|
overridePath = [
|
|
|
|
# Better leave them here - they are small, needed,
|
|
|
|
# and hard to refer from anywhere outside.
|
|
|
|
modprobe # must take precedence over module_init_tools
|
|
|
|
mount # must take precedence over util-linux
|
|
|
|
nix
|
|
|
|
nixosTools.nixosInstall
|
|
|
|
nixosTools.nixosRebuild
|
|
|
|
nixosTools.nixosCheckout
|
|
|
|
nixosTools.nixosHardwareScan
|
|
|
|
nixosTools.nixosGenSeccureKeys
|
|
|
|
setuidWrapper
|
|
|
|
];
|
|
|
|
path =
|
|
|
|
pkgs.lib.optionals (!config.environment.cleanStart) [
|
|
|
|
pkgs.bashInteractive # bash with ncurses support
|
|
|
|
pkgs.bzip2
|
|
|
|
pkgs.coreutils
|
|
|
|
pkgs.cpio
|
|
|
|
pkgs.curl
|
|
|
|
pkgs.e2fsprogs
|
|
|
|
pkgs.findutils
|
|
|
|
pkgs.glibc # for ldd, getent
|
|
|
|
pkgs.gnugrep
|
|
|
|
pkgs.gnused
|
|
|
|
pkgs.gnutar
|
|
|
|
pkgs.grub
|
|
|
|
pkgs.gzip
|
|
|
|
pkgs.iputils
|
|
|
|
pkgs.less
|
|
|
|
pkgs.lvm2
|
|
|
|
pkgs.man
|
|
|
|
pkgs.mdadm
|
|
|
|
pkgs.module_init_tools
|
|
|
|
pkgs.nano
|
|
|
|
pkgs.ncurses
|
|
|
|
pkgs.netcat
|
|
|
|
pkgs.nettools
|
|
|
|
pkgs.ntp
|
|
|
|
pkgs.openssh
|
|
|
|
pkgs.pciutils
|
|
|
|
pkgs.perl
|
|
|
|
pkgs.procps
|
|
|
|
pkgs.pwdutils
|
|
|
|
pkgs.reiserfsprogs
|
|
|
|
pkgs.rsync
|
|
|
|
pkgs.seccureUser
|
|
|
|
pkgs.strace
|
|
|
|
pkgs.su
|
|
|
|
pkgs.sysklogd
|
|
|
|
pkgs.sysvtools
|
|
|
|
pkgs.time
|
|
|
|
pkgs.udev
|
|
|
|
pkgs.upstart
|
|
|
|
pkgs.usbutils
|
|
|
|
pkgs.utillinux
|
|
|
|
pkgs.wirelesstools
|
|
|
|
]
|
|
|
|
++ pkgs.lib.optional config.services.bitlbee.enable pkgs.bitlbee
|
|
|
|
++ pkgs.lib.optional config.networking.defaultMailServer.directDelivery pkgs.ssmtp
|
|
|
|
++ config.environment.extraPackages
|
|
|
|
++ pkgs.lib.optional config.fonts.enableFontDir fontDir
|
|
|
|
++ pkgs.lib.optional config.hardware.enableGo7007 kernelPackages.wis_go7007
|
|
|
|
|
|
|
|
# NSS modules need to be in `systemPath' so that (i) the builder
|
|
|
|
# chroot gets to seem them, and (ii) applications can benefit from
|
|
|
|
# changes in the list of NSS modules at run-time, without requiring
|
|
|
|
# a reboot.
|
|
|
|
++ nssModules;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2006-12-09 20:25:23 +01:00
|
|
|
|
2007-01-15 15:43:56 +01:00
|
|
|
# We don't want to put all of `startPath' and `path' in $PATH, since
|
|
|
|
# then we get an embarrassingly long $PATH. So use the user
|
|
|
|
# environment builder to make a directory with symlinks to those
|
|
|
|
# packages.
|
2009-01-02 17:06:52 +01:00
|
|
|
systemPath = config.system.path;
|
2007-01-15 15:43:56 +01:00
|
|
|
|
2007-03-20 14:30:14 +01:00
|
|
|
|
2009-01-02 17:06:52 +01:00
|
|
|
defaultShell = config.system.shell;
|
|
|
|
|
2007-03-20 14:30:14 +01:00
|
|
|
|
2006-12-09 20:25:23 +01:00
|
|
|
# The script that activates the configuration, i.e., it sets up
|
|
|
|
# /etc, accounts, etc. It doesn't do anything that can only be done
|
|
|
|
# at boot time (such as start `init').
|
2009-01-02 17:07:24 +01:00
|
|
|
activateConfiguration = config.system.activationScripts.script;
|
2006-12-09 20:25:23 +01:00
|
|
|
|
2009-01-02 20:41:39 +01:00
|
|
|
# The shell that we want to use for /bin/sh.
|
|
|
|
binsh = pkgs.bashInteractive;
|
|
|
|
|
2006-12-09 20:25:23 +01:00
|
|
|
|
2006-11-04 01:01:13 +01:00
|
|
|
# The init script of boot stage 2, which is supposed to do
|
|
|
|
# everything else to bring up the system.
|
2009-01-02 17:07:30 +01:00
|
|
|
bootStage2 = config.system.build.bootStage2;
|
2006-11-27 17:26:51 +01:00
|
|
|
|
2006-12-11 18:36:57 +01:00
|
|
|
|
|
|
|
# Script to build the Grub menu containing the current and previous
|
|
|
|
# system configurations.
|
2009-01-02 17:07:34 +01:00
|
|
|
grubMenuBuilder = config.system.build.grubMenuBuilder;
|
2006-12-11 18:36:57 +01:00
|
|
|
|
|
|
|
|
|
|
|
# Putting it all together. This builds a store object containing
|
|
|
|
# symlinks to the various parts of the built configuration (the
|
|
|
|
# kernel, the Upstart services, the init scripts, etc.) as well as a
|
|
|
|
# script `switch-to-configuration' that activates the configuration
|
|
|
|
# and makes it bootable.
|
2007-09-25 21:00:20 +02:00
|
|
|
system = pkgs.checker (pkgs.stdenv.mkDerivation {
|
2006-12-11 18:36:57 +01:00
|
|
|
name = "system";
|
|
|
|
builder = ./system.sh;
|
|
|
|
switchToConfiguration = ./switch-to-configuration.sh;
|
2007-09-27 14:24:05 +02:00
|
|
|
inherit (pkgs) grub coreutils gnused gnugrep diffutils findutils upstart;
|
2007-11-09 19:49:45 +01:00
|
|
|
grubDevice = config.boot.grubDevice;
|
2006-12-11 18:36:57 +01:00
|
|
|
kernelParams =
|
2008-01-24 17:56:09 +01:00
|
|
|
config.boot.kernelParams ++ config.boot.extraKernelParams;
|
2006-12-11 18:36:57 +01:00
|
|
|
inherit bootStage2;
|
|
|
|
inherit activateConfiguration;
|
|
|
|
inherit grubMenuBuilder;
|
|
|
|
inherit etc;
|
2007-03-20 14:01:53 +01:00
|
|
|
inherit systemPath;
|
2007-09-18 17:06:24 +02:00
|
|
|
kernel = kernel + "/vmlinuz";
|
2006-12-11 18:36:57 +01:00
|
|
|
initrd = initialRamdisk + "/initrd";
|
|
|
|
# Most of these are needed by grub-install.
|
2006-12-18 17:27:56 +01:00
|
|
|
path = [
|
|
|
|
pkgs.coreutils
|
|
|
|
pkgs.gnused
|
|
|
|
pkgs.gnugrep
|
|
|
|
pkgs.findutils
|
|
|
|
pkgs.diffutils
|
|
|
|
pkgs.upstart # for initctl
|
|
|
|
];
|
2008-08-08 17:49:57 +02:00
|
|
|
# !!! wtf does this do???
|
2007-12-20 12:36:30 +01:00
|
|
|
children = map (x: ((import ./system.nix)
|
2008-08-08 17:49:57 +02:00
|
|
|
{ inherit platform;
|
2007-12-31 09:52:59 +01:00
|
|
|
configuration = x//{boot=((x.boot)//{grubDevice = "";});};}).system)
|
2007-12-20 12:36:30 +01:00
|
|
|
config.nesting.children;
|
2007-11-09 19:49:45 +01:00
|
|
|
configurationName = config.boot.configurationName;
|
2008-08-06 19:39:05 +02:00
|
|
|
}) config.environment.checkConfigurationOptions
|
|
|
|
optionDeclarations config;
|
2008-08-08 21:07:07 +02:00
|
|
|
|
2006-11-02 18:56:50 +01:00
|
|
|
}
|