2007-09-18 08:06:24 -07:00
|
|
|
let
|
|
|
|
|
2008-12-15 15:54:10 -08:00
|
|
|
fromEnv = name: default:
|
2008-10-06 16:23:28 -07:00
|
|
|
let env = builtins.getEnv name; in
|
|
|
|
if env == "" then default else env;
|
2009-05-20 03:18:54 -07:00
|
|
|
|
2008-10-06 16:23:28 -07:00
|
|
|
configuration = import (fromEnv "NIXOS_CONFIG" /etc/nixos/configuration.nix);
|
2009-05-20 03:18:54 -07:00
|
|
|
|
|
|
|
nixpkgs = fromEnv "NIXPKGS" /etc/nixos/nixpkgs;
|
2007-09-18 08:06:24 -07:00
|
|
|
|
2009-05-27 02:00:45 -07:00
|
|
|
pkgs = import nixpkgs {system = builtins.currentSystem;};
|
2009-05-27 02:16:56 -07:00
|
|
|
|
|
|
|
inherit
|
|
|
|
(import ./lib/eval-config.nix {inherit configuration pkgs;})
|
|
|
|
config optionDeclarations;
|
|
|
|
|
2007-09-18 08:06:24 -07:00
|
|
|
in
|
|
|
|
|
2009-05-27 02:00:45 -07:00
|
|
|
{
|
2009-05-27 02:03:07 -07:00
|
|
|
# Optionally check wether all config values have corresponding
|
|
|
|
# option declarations.
|
|
|
|
system = pkgs.checker config.system.build.system
|
|
|
|
config.environment.checkConfigurationOptions
|
|
|
|
optionDeclarations config;
|
2009-05-27 02:00:45 -07:00
|
|
|
|
2009-05-27 16:14:38 -07:00
|
|
|
# The following are used by nixos-rebuild.
|
2009-05-27 02:00:45 -07:00
|
|
|
nixFallback = pkgs.nixUnstable;
|
2009-05-27 16:14:38 -07:00
|
|
|
manifests = config.installer.manifests;
|
2007-09-18 08:06:24 -07:00
|
|
|
|
2009-05-27 02:00:45 -07:00
|
|
|
tests = config.tests;
|
2007-09-18 08:06:24 -07:00
|
|
|
}
|