2007-09-18 09:06:24 -06:00
|
|
|
let
|
|
|
|
|
2008-12-15 16:54:10 -07:00
|
|
|
fromEnv = name: default:
|
2008-10-06 17:23:28 -06:00
|
|
|
let env = builtins.getEnv name; in
|
|
|
|
if env == "" then default else env;
|
2009-05-20 04:18:54 -06:00
|
|
|
|
2008-10-06 17:23:28 -06:00
|
|
|
configuration = import (fromEnv "NIXOS_CONFIG" /etc/nixos/configuration.nix);
|
2009-05-20 04:18:54 -06:00
|
|
|
|
|
|
|
nixpkgs = fromEnv "NIXPKGS" /etc/nixos/nixpkgs;
|
2007-09-18 09:06:24 -06:00
|
|
|
|
2009-05-27 03:00:45 -06:00
|
|
|
pkgs = import nixpkgs {system = builtins.currentSystem;};
|
2009-05-27 03:16:56 -06:00
|
|
|
|
|
|
|
inherit
|
|
|
|
(import ./lib/eval-config.nix {inherit configuration pkgs;})
|
|
|
|
config optionDeclarations;
|
|
|
|
|
2007-09-18 09:06:24 -06:00
|
|
|
in
|
|
|
|
|
2009-05-27 03:00:45 -06:00
|
|
|
{
|
2009-05-27 03:03:07 -06: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 03:00:45 -06:00
|
|
|
|
2009-05-27 17:14:38 -06:00
|
|
|
# The following are used by nixos-rebuild.
|
2009-05-27 03:00:45 -06:00
|
|
|
nixFallback = pkgs.nixUnstable;
|
2009-05-27 17:14:38 -06:00
|
|
|
manifests = config.installer.manifests;
|
2007-09-18 09:06:24 -06:00
|
|
|
|
2009-05-27 03:00:45 -06:00
|
|
|
tests = config.tests;
|
2007-09-18 09:06:24 -06:00
|
|
|
}
|