2009-05-27 02:16:56 -07:00
|
|
|
# From an end-user configuration file (`configuration'), build a NixOS
|
|
|
|
# configuration object (`config') from which we can retrieve option
|
|
|
|
# values.
|
|
|
|
|
2009-06-05 06:19:39 -07:00
|
|
|
{ configuration
|
|
|
|
, system ? builtins.currentSystem
|
|
|
|
, nixpkgs ? import ./from-env.nix "NIXPKGS" /etc/nixos/nixpkgs
|
|
|
|
, pkgs ? import nixpkgs {inherit system;}
|
2009-08-05 07:43:13 -07:00
|
|
|
, extraArgs ? {}
|
2009-08-10 18:35:56 -07:00
|
|
|
, extraModules ? []
|
2009-06-05 06:19:39 -07:00
|
|
|
}:
|
2009-05-27 02:16:56 -07:00
|
|
|
|
2009-08-05 07:43:13 -07:00
|
|
|
let extraArgs_ = extraArgs; in
|
|
|
|
|
2009-05-27 02:16:56 -07:00
|
|
|
rec {
|
2009-06-05 06:19:39 -07:00
|
|
|
inherit nixpkgs pkgs;
|
|
|
|
|
2009-08-10 18:35:56 -07:00
|
|
|
configComponents =
|
|
|
|
[ configuration
|
|
|
|
./check-config.nix
|
|
|
|
]
|
|
|
|
++ extraModules
|
|
|
|
++ (import ../modules/module-list.nix);
|
2009-05-27 02:16:56 -07:00
|
|
|
|
2009-08-05 07:43:13 -07:00
|
|
|
extraArgs = extraArgs_ // {
|
2009-08-21 02:08:55 -07:00
|
|
|
inherit pkgs optionDeclarations;
|
2009-07-14 05:36:02 -07:00
|
|
|
modulesPath = ../modules;
|
|
|
|
};
|
|
|
|
|
2009-06-05 06:19:39 -07:00
|
|
|
config_ =
|
2009-07-14 05:36:02 -07:00
|
|
|
pkgs.lib.definitionsOf configComponents extraArgs;
|
2009-05-27 02:16:56 -07:00
|
|
|
|
2009-07-06 16:25:12 -07:00
|
|
|
# "fixableDeclarationsOf" is used instead of "declarationsOf" because some
|
|
|
|
# option default values may depends on the definition of other options.
|
2009-08-21 02:11:33 -07:00
|
|
|
# !!! This seems inefficent. Didn't definitionsOf already compute
|
|
|
|
# the option declarations?
|
2009-05-27 02:16:56 -07:00
|
|
|
optionDeclarations =
|
2009-07-14 05:36:02 -07:00
|
|
|
pkgs.lib.fixableDeclarationsOf configComponents extraArgs config_;
|
2009-07-06 16:25:12 -07:00
|
|
|
|
2009-06-05 06:19:39 -07:00
|
|
|
# Optionally check wether all config values have corresponding
|
|
|
|
# option declarations.
|
|
|
|
config = pkgs.checker config_
|
|
|
|
config_.environment.checkConfigurationOptions
|
|
|
|
optionDeclarations config_;
|
2009-05-27 02:16:56 -07:00
|
|
|
}
|