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-06-05 14:19:39 +01:00
|
|
|
{ configuration
|
|
|
|
, system ? builtins.currentSystem
|
|
|
|
, nixpkgs ? import ./from-env.nix "NIXPKGS" /etc/nixos/nixpkgs
|
|
|
|
, pkgs ? import nixpkgs {inherit system;}
|
|
|
|
}:
|
2009-05-27 10:16:56 +01:00
|
|
|
|
|
|
|
rec {
|
2009-06-05 14:19:39 +01:00
|
|
|
inherit nixpkgs pkgs;
|
|
|
|
|
2009-05-27 10:16:56 +01:00
|
|
|
configComponents = [
|
|
|
|
configuration
|
2009-07-06 17:21:03 +01:00
|
|
|
./check-config.nix
|
|
|
|
] ++ (import ../modules/module-list.nix);
|
2009-05-27 10:16:56 +01:00
|
|
|
|
2009-06-05 14:19:39 +01:00
|
|
|
config_ =
|
2009-05-27 10:16:56 +01:00
|
|
|
pkgs.lib.fixOptionSets
|
|
|
|
pkgs.lib.mergeOptionSets
|
2009-07-06 17:20:58 +01:00
|
|
|
{ inherit pkgs; } configComponents;
|
2009-05-27 10:16:56 +01:00
|
|
|
|
|
|
|
optionDeclarations =
|
|
|
|
pkgs.lib.fixOptionSetsFun
|
|
|
|
pkgs.lib.filterOptionSets
|
2009-07-06 17:20:58 +01:00
|
|
|
{ inherit pkgs; } configComponents
|
2009-06-05 14:19:39 +01:00
|
|
|
config_;
|
|
|
|
|
|
|
|
# Optionally check wether all config values have corresponding
|
|
|
|
# option declarations.
|
|
|
|
config = pkgs.checker config_
|
|
|
|
config_.environment.checkConfigurationOptions
|
|
|
|
optionDeclarations config_;
|
2009-05-27 10:16:56 +01:00
|
|
|
}
|