2016-12-29 13:23:51 -08:00
|
|
|
# From an end-user configuration file (`configuration.nix'), build a NixOS
|
2009-05-27 02:16:56 -07:00
|
|
|
# configuration object (`config') from which we can retrieve option
|
|
|
|
# values.
|
|
|
|
|
2014-05-05 13:30:51 -07:00
|
|
|
# !!! Please think twice before adding to this argument list!
|
|
|
|
# Ideally eval-config.nix would be an extremely thin wrapper
|
|
|
|
# around lib.evalModules, so that modular systems that have nixos configs
|
|
|
|
# as subcomponents (e.g. the container feature, or nixops if network
|
|
|
|
# expressions are ever made modular at the top level) can just use
|
|
|
|
# types.submodule instead of using eval-config.nix
|
|
|
|
{ # !!! system can be set modularly, would be nice to remove
|
|
|
|
system ? builtins.currentSystem
|
|
|
|
, # !!! is this argument needed any more? The pkgs argument can
|
|
|
|
# be set modularly anyway.
|
|
|
|
pkgs ? null
|
|
|
|
, # !!! what do we gain by making this configurable?
|
|
|
|
baseModules ? import ../modules/module-list.nix
|
|
|
|
, # !!! See comment about args in lib/modules.nix
|
|
|
|
extraArgs ? {}
|
2015-08-09 05:40:01 -07:00
|
|
|
, # !!! See comment about args in lib/modules.nix
|
|
|
|
specialArgs ? {}
|
2009-08-27 04:57:43 -07:00
|
|
|
, modules
|
2014-05-05 13:30:51 -07:00
|
|
|
, # !!! See comment about check in lib/modules.nix
|
|
|
|
check ? true
|
2013-11-27 07:54:20 -08:00
|
|
|
, prefix ? []
|
2014-05-05 12:52:33 -07:00
|
|
|
, lib ? import ../../lib
|
2009-06-05 06:19:39 -07:00
|
|
|
}:
|
2009-05-27 02:16:56 -07:00
|
|
|
|
2018-04-05 12:22:45 -07:00
|
|
|
let extraArgs_ = extraArgs; pkgs_ = pkgs;
|
2014-12-16 08:07:14 -08:00
|
|
|
extraModules = let e = builtins.getEnv "NIXOS_EXTRA_MODULE_PATH";
|
2018-05-22 13:42:02 -07:00
|
|
|
in if e == "" then [] else [(import e)];
|
2014-05-05 12:52:33 -07:00
|
|
|
in
|
|
|
|
|
|
|
|
let
|
|
|
|
pkgsModule = rec {
|
|
|
|
_file = ./eval-config.nix;
|
|
|
|
key = _file;
|
|
|
|
config = {
|
2018-05-17 15:53:13 -07:00
|
|
|
# Explicit `nixpkgs.system` or `nixpkgs.localSystem` should override
|
|
|
|
# this. Since the latter defaults to the former, the former should
|
|
|
|
# default to the argument. That way this new default could propagate all
|
|
|
|
# they way through, but has the last priority behind everything else.
|
|
|
|
nixpkgs.system = lib.mkDefault system;
|
2015-03-12 15:19:23 -07:00
|
|
|
_module.args.pkgs = lib.mkIf (pkgs_ != null) (lib.mkForce pkgs_);
|
2014-05-05 12:52:33 -07:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2014-12-16 08:07:14 -08:00
|
|
|
in 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.
|
2014-05-05 12:52:33 -07:00
|
|
|
inherit (lib.evalModules {
|
2014-05-05 13:23:57 -07:00
|
|
|
inherit prefix check;
|
2014-05-05 12:52:33 -07:00
|
|
|
modules = modules ++ extraModules ++ baseModules ++ [ pkgsModule ];
|
2013-10-28 14:43:29 -07:00
|
|
|
args = extraArgs;
|
2018-10-29 05:06:55 -07:00
|
|
|
specialArgs =
|
|
|
|
{ modulesPath = builtins.toString ../modules; } // specialArgs;
|
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_ // {
|
2014-05-06 07:31:48 -07:00
|
|
|
inherit modules baseModules;
|
2009-07-14 05:36:02 -07:00
|
|
|
};
|
|
|
|
|
2015-03-12 15:19:23 -07:00
|
|
|
inherit (config._module.args) pkgs;
|
2009-05-27 02:16:56 -07:00
|
|
|
}
|