2009-05-27 10:16:56 +01:00
|
|
|
# From an end-user configuration file (`configuration'), build a NixOS
|
|
|
|
# configuration object (`config') from which we can retrieve option
|
|
|
|
# values.
|
|
|
|
|
2009-08-27 12:57:43 +01:00
|
|
|
{ system ? builtins.currentSystem
|
2009-08-26 17:52:38 +01:00
|
|
|
, pkgs ? null
|
|
|
|
, baseModules ? import ../modules/module-list.nix
|
2009-08-05 15:43:13 +01:00
|
|
|
, extraArgs ? {}
|
2009-08-27 12:57:43 +01:00
|
|
|
, modules
|
2009-06-05 14:19:39 +01:00
|
|
|
}:
|
2009-05-27 10:16:56 +01:00
|
|
|
|
2010-11-23 16:07:00 +00:00
|
|
|
let extraArgs_ = extraArgs; pkgs_ = pkgs; system_ = system; in
|
2009-08-05 15:43:13 +01:00
|
|
|
|
2009-05-27 10:16:56 +01:00
|
|
|
rec {
|
2009-06-05 14:19:39 +01:00
|
|
|
|
2009-08-26 17:52:38 +01:00
|
|
|
# These are the NixOS modules that constitute the system configuration.
|
2009-08-27 12:57:43 +01:00
|
|
|
configComponents = modules ++ baseModules;
|
2009-05-27 10:16:56 +01:00
|
|
|
|
2009-08-26 17:52:38 +01:00
|
|
|
# Merge the option definitions in all modules, forming the full
|
2009-09-15 15:09:11 +01:00
|
|
|
# system configuration. It's not checked for undeclared options.
|
|
|
|
systemModule =
|
|
|
|
pkgs.lib.fixMergeModules configComponents extraArgs;
|
|
|
|
|
|
|
|
optionDefinitions = systemModule.config;
|
|
|
|
optionDeclarations = systemModule.options;
|
2009-09-15 15:09:18 +01:00
|
|
|
inherit (systemModule) options;
|
2009-08-26 17:52:38 +01:00
|
|
|
|
|
|
|
# These are the extra arguments passed to every module. In
|
|
|
|
# particular, Nixpkgs is passed through the "pkgs" argument.
|
2009-08-05 15:43:13 +01:00
|
|
|
extraArgs = extraArgs_ // {
|
2010-05-08 18:18:26 +01:00
|
|
|
inherit pkgs modules baseModules;
|
2009-07-14 13:36:02 +01:00
|
|
|
modulesPath = ../modules;
|
2013-10-11 12:33:44 +01:00
|
|
|
pkgs_i686 = import ./nixpkgs.nix { system = "i686-linux"; };
|
2012-10-12 22:01:49 +01:00
|
|
|
utils = import ./utils.nix pkgs;
|
2009-07-14 13:36:02 +01:00
|
|
|
};
|
|
|
|
|
2009-08-26 17:52:38 +01: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 16:07:00 +00:00
|
|
|
# overrides such as changing GCC throughout the system), and the
|
|
|
|
# option nixpkgs.system to override the platform type. This is
|
2009-08-26 17:52:38 +01: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 12:33:44 +01:00
|
|
|
else import ./nixpkgs.nix (
|
2010-02-27 18:37:12 +00:00
|
|
|
let
|
2010-11-23 16:07:00 +00:00
|
|
|
system = if nixpkgsOptions.system != "" then nixpkgsOptions.system else system_;
|
2010-02-27 18:37:12 +00:00
|
|
|
nixpkgsOptions = (import ./eval-config.nix {
|
2012-03-02 12:38:22 +00:00
|
|
|
inherit system extraArgs modules;
|
2009-08-26 17:52:38 +01: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 12:33:44 +01:00
|
|
|
pkgs = import ./nixpkgs.nix { system = system_; config = {}; };
|
2010-02-27 18:37:12 +00:00
|
|
|
}).optionDefinitions.nixpkgs;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
inherit system;
|
2010-09-08 17:52:15 +01:00
|
|
|
inherit (nixpkgsOptions) config;
|
2010-02-27 18:37:12 +00:00
|
|
|
});
|
2009-05-27 10:16:56 +01:00
|
|
|
|
2009-06-05 14:19:39 +01:00
|
|
|
# Optionally check wether all config values have corresponding
|
|
|
|
# option declarations.
|
2009-12-05 19:22:02 +00:00
|
|
|
config =
|
2013-10-23 17:22:26 +01:00
|
|
|
assert optionDefinitions.environment.checkConfigurationOptions -> pkgs.lib.checkModule "" systemModule;
|
2009-12-05 19:22:02 +00:00
|
|
|
systemModule.config;
|
2009-05-27 10:16:56 +01:00
|
|
|
}
|