2009-05-27 02:16:56 -07:00
|
|
|
# From an end-user configuration file (`configuration'), build a NixOS
|
|
|
|
# configuration object (`config') from which we can retrieve option
|
|
|
|
# values.
|
|
|
|
|
2009-08-27 04:57:43 -07:00
|
|
|
{ system ? builtins.currentSystem
|
2009-08-26 09:52:38 -07:00
|
|
|
, pkgs ? null
|
|
|
|
, baseModules ? import ../modules/module-list.nix
|
2009-08-05 07:43:13 -07:00
|
|
|
, extraArgs ? {}
|
2009-08-27 04:57:43 -07:00
|
|
|
, modules
|
2013-10-28 07:48:20 -07:00
|
|
|
, check ? true
|
2009-06-05 06:19:39 -07:00
|
|
|
}:
|
2009-05-27 02:16:56 -07:00
|
|
|
|
2010-11-23 08:07:00 -08:00
|
|
|
let extraArgs_ = extraArgs; pkgs_ = pkgs; system_ = system; in
|
2009-08-05 07:43:13 -07:00
|
|
|
|
2009-05-27 02:16:56 -07:00
|
|
|
rec {
|
2009-06-05 06:19:39 -07:00
|
|
|
|
2009-08-26 09:52:38 -07:00
|
|
|
# Merge the option definitions in all modules, forming the full
|
2013-10-28 07:48:20 -07:00
|
|
|
# system configuration.
|
2013-10-28 14:43:29 -07:00
|
|
|
inherit (pkgs.lib.evalModules {
|
|
|
|
modules = modules ++ baseModules;
|
|
|
|
args = extraArgs;
|
2013-10-29 08:14:58 -07:00
|
|
|
check = check && options.environment.checkConfigurationOptions.value;
|
2013-10-28 14:43:29 -07:00
|
|
|
}) config options;
|
2009-08-26 09:52:38 -07:00
|
|
|
|
|
|
|
# These are the extra arguments passed to every module. In
|
|
|
|
# particular, Nixpkgs is passed through the "pkgs" argument.
|
2009-08-05 07:43:13 -07:00
|
|
|
extraArgs = extraArgs_ // {
|
2010-05-08 10:18:26 -07:00
|
|
|
inherit pkgs modules baseModules;
|
2009-07-14 05:36:02 -07:00
|
|
|
modulesPath = ../modules;
|
2013-10-11 04:33:44 -07:00
|
|
|
pkgs_i686 = import ./nixpkgs.nix { system = "i686-linux"; };
|
2012-10-12 14:01:49 -07:00
|
|
|
utils = import ./utils.nix pkgs;
|
2009-07-14 05:36:02 -07:00
|
|
|
};
|
|
|
|
|
2009-08-26 09:52:38 -07:00
|
|
|
# Import Nixpkgs, allowing the NixOS option nixpkgs.config to
|
|
|
|
# specify the Nixpkgs configuration (e.g., to set package options
|
|
|
|
# such as firefox.enableGeckoMediaPlayer, or to apply global
|
2010-11-23 08:07:00 -08:00
|
|
|
# overrides such as changing GCC throughout the system), and the
|
|
|
|
# option nixpkgs.system to override the platform type. This is
|
2009-08-26 09:52:38 -07:00
|
|
|
# tricky, because we have to prevent an infinite recursion: "pkgs"
|
|
|
|
# is passed as an argument to NixOS modules, but the value of "pkgs"
|
|
|
|
# depends on config.nixpkgs.config, which we get from the modules.
|
|
|
|
# So we call ourselves here with "pkgs" explicitly set to an
|
|
|
|
# instance that doesn't depend on nixpkgs.config.
|
|
|
|
pkgs =
|
|
|
|
if pkgs_ != null
|
|
|
|
then pkgs_
|
2013-10-11 04:33:44 -07:00
|
|
|
else import ./nixpkgs.nix (
|
2010-02-27 10:37:12 -08:00
|
|
|
let
|
2010-11-23 08:07:00 -08:00
|
|
|
system = if nixpkgsOptions.system != "" then nixpkgsOptions.system else system_;
|
2010-02-27 10:37:12 -08:00
|
|
|
nixpkgsOptions = (import ./eval-config.nix {
|
2012-03-02 04:38:22 -08:00
|
|
|
inherit system extraArgs modules;
|
2009-08-26 09:52:38 -07:00
|
|
|
# For efficiency, leave out most NixOS modules; they don't
|
|
|
|
# define nixpkgs.config, so it's pointless to evaluate them.
|
|
|
|
baseModules = [ ../modules/misc/nixpkgs.nix ];
|
2013-10-11 04:33:44 -07:00
|
|
|
pkgs = import ./nixpkgs.nix { system = system_; config = {}; };
|
2013-10-28 07:48:20 -07:00
|
|
|
check = false;
|
2013-10-27 16:56:22 -07:00
|
|
|
}).config.nixpkgs;
|
2010-02-27 10:37:12 -08:00
|
|
|
in
|
|
|
|
{
|
|
|
|
inherit system;
|
2010-09-08 09:52:15 -07:00
|
|
|
inherit (nixpkgsOptions) config;
|
2010-02-27 10:37:12 -08:00
|
|
|
});
|
2009-05-27 02:16:56 -07:00
|
|
|
|
|
|
|
}
|