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