2016-12-29 16:23:51 -05:00
|
|
|
# From an end-user configuration file (`configuration.nix'), build a NixOS
|
2009-05-27 09:16:56 +00:00
|
|
|
# configuration object (`config') from which we can retrieve option
|
|
|
|
# values.
|
|
|
|
|
2014-05-05 16: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 18:07:39 +00:00
|
|
|
evalConfigArgs@{
|
2022-06-09 11:27:29 +02:00
|
|
|
# !!! system can be set modularly, would be nice to remove,
|
|
|
|
# however, removing or changing this default is too much
|
|
|
|
# of a breaking change. To set it modularly, pass `null`.
|
2014-05-05 16:30:51 -04:00
|
|
|
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?
|
2022-06-22 01:01:34 +02:00
|
|
|
# we can add modules that are included in specialisations, regardless
|
|
|
|
# of inheritParentConfig.
|
2014-05-05 16:30:51 -04:00
|
|
|
baseModules ? import ../modules/module-list.nix,
|
|
|
|
# !!! See comment about args in lib/modules.nix
|
|
|
|
extraArgs ? { },
|
2015-08-09 14:40:01 +02:00
|
|
|
# !!! See comment about args in lib/modules.nix
|
|
|
|
specialArgs ? { },
|
2009-08-27 11:57:43 +00:00
|
|
|
modules,
|
2021-12-17 15:30:32 +01:00
|
|
|
modulesLocation ? (builtins.unsafeGetAttrPos "modules" evalConfigArgs).file or null,
|
2014-05-05 16:30:51 -04:00
|
|
|
# !!! See comment about check in lib/modules.nix
|
|
|
|
check ? true,
|
2013-11-27 16:54:20 +01:00
|
|
|
prefix ? [ ],
|
2014-05-05 15:52:33 -04:00
|
|
|
lib ? import ../../lib,
|
2024-10-18 16:54:07 +02:00
|
|
|
extraModules ?
|
|
|
|
let
|
|
|
|
e = builtins.getEnv "NIXOS_EXTRA_MODULE_PATH";
|
|
|
|
in
|
|
|
|
lib.optional (e != "") (
|
|
|
|
lib.warn
|
|
|
|
''
|
|
|
|
The NIXOS_EXTRA_MODULE_PATH environment variable is deprecated and will be
|
|
|
|
removed in NixOS 25.05.
|
|
|
|
We recommend a workflow where you update the expression files instead, but
|
|
|
|
if you wish to continue to use this variable, you may do so with a module like:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
(builtins.getEnv "NIXOS_EXTRA_MODULE_PATH")
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
This has the benefit that your configuration hints at the
|
|
|
|
non-standard workflow.
|
|
|
|
''
|
|
|
|
# NOTE: this import call is unnecessary and it even removes the file name
|
|
|
|
# from error messages.
|
|
|
|
import
|
|
|
|
e
|
|
|
|
),
|
2009-06-05 13:19:39 +00:00
|
|
|
}:
|
2009-05-27 09:16:56 +00:00
|
|
|
|
2014-05-05 15:52:33 -04:00
|
|
|
let
|
2023-05-07 15:33:47 +02:00
|
|
|
inherit (lib) optional;
|
|
|
|
|
2022-01-07 01:34:30 +01:00
|
|
|
evalModulesMinimal =
|
|
|
|
(import ./default.nix {
|
|
|
|
inherit lib;
|
|
|
|
# Implicit use of feature is noted in implementation.
|
|
|
|
featureFlags.minimalModules = { };
|
|
|
|
}).evalModules;
|
2022-01-04 22:00:00 +01:00
|
|
|
|
2014-05-05 15:52:33 -04:00
|
|
|
pkgsModule = rec {
|
|
|
|
_file = ./eval-config.nix;
|
|
|
|
key = _file;
|
2023-05-07 15:33:47 +02:00
|
|
|
config = lib.mkMerge (
|
|
|
|
(optional (system != null) {
|
|
|
|
# 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;
|
|
|
|
})
|
2023-10-08 20:39:07 +03:00
|
|
|
++ (optional (pkgs != null) {
|
|
|
|
# This should be default priority, so it conflicts with any user-defined pkgs.
|
|
|
|
nixpkgs.pkgs = pkgs;
|
2023-05-07 15:33:47 +02:00
|
|
|
})
|
|
|
|
);
|
2014-05-05 15:52:33 -04:00
|
|
|
};
|
|
|
|
|
2021-12-02 18:15:08 +00:00
|
|
|
withWarnings =
|
|
|
|
x:
|
2021-12-10 12:55:30 +01: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."
|
2024-12-13 21:51:49 -08:00
|
|
|
lib.warnIf
|
|
|
|
(specialArgs ? pkgs)
|
|
|
|
''
|
|
|
|
You have set specialArgs.pkgs, which means that options like nixpkgs.config
|
|
|
|
and nixpkgs.overlays will be ignored. If you wish to reuse an already created
|
|
|
|
pkgs, which you know is configured correctly for this NixOS configuration,
|
2025-01-15 11:53:42 -08:00
|
|
|
please import the `nixosModules.readOnlyPkgs` module from the nixpkgs flake or
|
2024-12-13 21:51:49 -08:00
|
|
|
`(modulesPath + "/misc/nixpkgs/read-only.nix"), and set `{ nixpkgs.pkgs = <your pkgs>; }`.
|
|
|
|
This properly disables the ignored options to prevent future surprises.
|
|
|
|
''
|
2021-12-02 18:15:08 +00:00
|
|
|
x;
|
|
|
|
|
2021-12-02 18:07:39 +00:00
|
|
|
legacyModules =
|
2021-12-10 12:55:30 +01: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 15:30:32 +01: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 22:00:00 +01:00
|
|
|
noUserModules = evalModulesMinimal ({
|
|
|
|
inherit prefix specialArgs;
|
2021-12-02 18:07:39 +00:00
|
|
|
modules =
|
|
|
|
baseModules
|
|
|
|
++ extraModules
|
|
|
|
++ [
|
|
|
|
pkgsModule
|
|
|
|
modulesModule
|
|
|
|
];
|
|
|
|
});
|
2009-08-26 16:52:38 +00: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 12:36:02 +00:00
|
|
|
};
|
|
|
|
|
2021-12-02 18:11:20 +00:00
|
|
|
nixosWithUserModules = noUserModules.extendModules { modules = allUserModules; };
|
|
|
|
|
2023-10-10 13:23:56 +02:00
|
|
|
withExtraAttrs =
|
|
|
|
configuration:
|
|
|
|
configuration
|
|
|
|
// {
|
2023-07-28 18:10:41 +02:00
|
|
|
inherit extraArgs;
|
2023-10-10 13:23:56 +02:00
|
|
|
inherit (configuration._module.args) pkgs;
|
2024-01-15 00:28:07 +01:00
|
|
|
inherit lib;
|
2023-10-10 13:23:56 +02:00
|
|
|
extendModules = args: withExtraAttrs (configuration.extendModules args);
|
2023-07-28 18:10:41 +02:00
|
|
|
};
|
2021-12-17 14:07:47 +01:00
|
|
|
in
|
2023-10-10 13:20:34 +02:00
|
|
|
withWarnings (withExtraAttrs nixosWithUserModules)
|