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