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