2016-12-29 21:23:51 +00:00
|
|
|
# From an end-user configuration file (`configuration.nix'), build a NixOS
|
2009-05-27 10:16:56 +01:00
|
|
|
# configuration object (`config') from which we can retrieve option
|
|
|
|
# values.
|
|
|
|
|
2014-05-05 21:30:51 +01: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
|
2021-12-02 18:07:39 +00:00
|
|
|
evalConfigArgs@
|
2014-05-05 21:30:51 +01:00
|
|
|
{ # !!! 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 13:40:01 +01:00
|
|
|
, # !!! See comment about args in lib/modules.nix
|
|
|
|
specialArgs ? {}
|
2009-08-27 12:57:43 +01:00
|
|
|
, modules
|
2021-12-17 14:30:32 +00:00
|
|
|
, modulesLocation ? (builtins.unsafeGetAttrPos "modules" evalConfigArgs).file or null
|
2014-05-05 21:30:51 +01:00
|
|
|
, # !!! See comment about check in lib/modules.nix
|
|
|
|
check ? true
|
2013-11-27 15:54:20 +00:00
|
|
|
, prefix ? []
|
2014-05-05 20:52:33 +01:00
|
|
|
, lib ? import ../../lib
|
2018-12-10 21:02:55 +00:00
|
|
|
, extraModules ? let e = builtins.getEnv "NIXOS_EXTRA_MODULE_PATH";
|
|
|
|
in if e == "" then [] else [(import e)]
|
2009-06-05 14:19:39 +01:00
|
|
|
}:
|
2009-05-27 10:16:56 +01:00
|
|
|
|
2021-12-02 18:07:39 +00:00
|
|
|
let pkgs_ = pkgs;
|
2014-05-05 20:52:33 +01:00
|
|
|
in
|
|
|
|
|
|
|
|
let
|
2022-01-07 00:34:30 +00:00
|
|
|
evalModulesMinimal = (import ./default.nix {
|
|
|
|
inherit lib;
|
|
|
|
# Implicit use of feature is noted in implementation.
|
|
|
|
featureFlags.minimalModules = { };
|
|
|
|
}).evalModules;
|
2022-01-04 21:00:00 +00:00
|
|
|
|
2014-05-05 20:52:33 +01:00
|
|
|
pkgsModule = rec {
|
|
|
|
_file = ./eval-config.nix;
|
|
|
|
key = _file;
|
|
|
|
config = {
|
2018-05-17 23:53:13 +01: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;
|
2020-03-04 14:24:22 +00:00
|
|
|
|
|
|
|
# Stash the value of the `system` argument. When using `nesting.children`
|
|
|
|
# we want to have the same default value behavior (immediately above)
|
|
|
|
# without any interference from the user's configuration.
|
|
|
|
nixpkgs.initialSystem = system;
|
|
|
|
|
2015-03-12 22:19:23 +00:00
|
|
|
_module.args.pkgs = lib.mkIf (pkgs_ != null) (lib.mkForce pkgs_);
|
2014-05-05 20:52:33 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-12-02 18:15:08 +00:00
|
|
|
withWarnings = x:
|
2021-12-10 11:55:30 +00:00
|
|
|
lib.warnIf (evalConfigArgs?extraArgs) "The extraArgs argument to eval-config.nix is deprecated. Please set config._module.args instead."
|
2021-12-02 18:15:08 +00:00
|
|
|
lib.warnIf (evalConfigArgs?check) "The check argument to eval-config.nix is deprecated. Please set config._module.check instead."
|
|
|
|
x;
|
|
|
|
|
2021-12-02 18:07:39 +00:00
|
|
|
legacyModules =
|
2021-12-10 11:55:30 +00:00
|
|
|
lib.optional (evalConfigArgs?extraArgs) {
|
2021-12-02 18:07:39 +00:00
|
|
|
config = {
|
|
|
|
_module.args = extraArgs;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
++ lib.optional (evalConfigArgs?check) {
|
|
|
|
config = {
|
|
|
|
_module.check = lib.mkDefault check;
|
|
|
|
};
|
|
|
|
};
|
2021-12-17 14:30:32 +00:00
|
|
|
|
|
|
|
allUserModules =
|
|
|
|
let
|
|
|
|
# Add the invoking file (or specified modulesLocation) as error message location
|
|
|
|
# for modules that don't have their own locations; presumably inline modules.
|
|
|
|
locatedModules =
|
|
|
|
if modulesLocation == null then
|
|
|
|
modules
|
|
|
|
else
|
|
|
|
map (lib.setDefaultModuleLocation modulesLocation) modules;
|
|
|
|
in
|
|
|
|
locatedModules ++ legacyModules;
|
2021-12-02 18:07:39 +00:00
|
|
|
|
2022-01-04 21:00:00 +00:00
|
|
|
noUserModules = evalModulesMinimal ({
|
|
|
|
inherit prefix specialArgs;
|
2021-12-02 18:07:39 +00:00
|
|
|
modules = baseModules ++ extraModules ++ [ pkgsModule modulesModule ];
|
|
|
|
});
|
2009-08-26 17:52:38 +01:00
|
|
|
|
2021-12-02 18:07:39 +00:00
|
|
|
# Extra arguments that are useful for constructing a similar configuration.
|
|
|
|
modulesModule = {
|
|
|
|
config = {
|
|
|
|
_module.args = {
|
|
|
|
inherit noUserModules baseModules extraModules modules;
|
|
|
|
};
|
|
|
|
};
|
2009-07-14 13:36:02 +01:00
|
|
|
};
|
|
|
|
|
2021-12-02 18:11:20 +00:00
|
|
|
nixosWithUserModules = noUserModules.extendModules { modules = allUserModules; };
|
|
|
|
|
2021-12-17 13:07:47 +00:00
|
|
|
in
|
|
|
|
withWarnings nixosWithUserModules // {
|
2021-11-01 09:59:47 +00:00
|
|
|
inherit extraArgs;
|
2021-12-02 18:11:20 +00:00
|
|
|
inherit (nixosWithUserModules._module.args) pkgs;
|
2009-05-27 10:16:56 +01:00
|
|
|
}
|