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-06-05 14:19:39 +01:00
|
|
|
, nixpkgs ? import ./from-env.nix "NIXPKGS" /etc/nixos/nixpkgs
|
2009-08-31 15:56:19 +01:00
|
|
|
, services ? /etc/nixos/services
|
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
|
|
|
|
2009-08-26 17:52:38 +01:00
|
|
|
let extraArgs_ = extraArgs; pkgs_ = pkgs; 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
|
|
|
|
# system configuration. This is called "configFast" because it's
|
|
|
|
# not checked for undeclared options.
|
|
|
|
configFast =
|
|
|
|
pkgs.lib.definitionsOf configComponents extraArgs;
|
|
|
|
|
|
|
|
# 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_ // {
|
2009-08-21 10:08:55 +01:00
|
|
|
inherit pkgs optionDeclarations;
|
2009-07-14 13:36:02 +01:00
|
|
|
modulesPath = ../modules;
|
2009-08-31 15:56:19 +01:00
|
|
|
servicesPath = services;
|
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
|
|
|
|
# overrides such as changing GCC throughout the system). This is
|
|
|
|
# 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_
|
|
|
|
else import nixpkgs {
|
|
|
|
inherit system;
|
|
|
|
config =
|
|
|
|
(import ./eval-config.nix {
|
2009-08-31 15:56:19 +01:00
|
|
|
inherit system nixpkgs services 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 ];
|
|
|
|
pkgs = import nixpkgs { inherit system; config = {}; };
|
|
|
|
}).configFast.nixpkgs.config;
|
|
|
|
};
|
2009-05-27 10:16:56 +01:00
|
|
|
|
2009-07-07 00:25:12 +01:00
|
|
|
# "fixableDeclarationsOf" is used instead of "declarationsOf" because some
|
|
|
|
# option default values may depends on the definition of other options.
|
2009-08-21 10:11:33 +01:00
|
|
|
# !!! This seems inefficent. Didn't definitionsOf already compute
|
|
|
|
# the option declarations?
|
2009-05-27 10:16:56 +01:00
|
|
|
optionDeclarations =
|
2009-08-26 17:52:38 +01:00
|
|
|
pkgs.lib.fixableDeclarationsOf configComponents extraArgs configFast;
|
2009-07-07 00:25:12 +01:00
|
|
|
|
2009-06-05 14:19:39 +01:00
|
|
|
# Optionally check wether all config values have corresponding
|
|
|
|
# option declarations.
|
2009-08-26 17:52:38 +01:00
|
|
|
config = pkgs.checker configFast
|
|
|
|
configFast.environment.checkConfigurationOptions
|
|
|
|
optionDeclarations configFast;
|
2009-05-27 10:16:56 +01:00
|
|
|
}
|