2007-09-18 17:06:24 +02:00
|
|
|
let
|
|
|
|
|
2008-12-16 00:54:10 +01:00
|
|
|
fromEnv = name: default:
|
2008-10-07 01:23:28 +02:00
|
|
|
let env = builtins.getEnv name; in
|
|
|
|
if env == "" then default else env;
|
2009-05-20 12:18:54 +02:00
|
|
|
|
2008-10-07 01:23:28 +02:00
|
|
|
configuration = import (fromEnv "NIXOS_CONFIG" /etc/nixos/configuration.nix);
|
2009-05-20 12:18:54 +02:00
|
|
|
|
|
|
|
nixpkgs = fromEnv "NIXPKGS" /etc/nixos/nixpkgs;
|
2007-09-18 17:06:24 +02:00
|
|
|
|
2009-05-27 11:00:45 +02:00
|
|
|
pkgs = import nixpkgs {system = builtins.currentSystem;};
|
2009-05-27 11:16:56 +02:00
|
|
|
|
|
|
|
inherit
|
|
|
|
(import ./lib/eval-config.nix {inherit configuration pkgs;})
|
|
|
|
config optionDeclarations;
|
|
|
|
|
2007-09-18 17:06:24 +02:00
|
|
|
in
|
|
|
|
|
2009-05-27 11:00:45 +02:00
|
|
|
{
|
2009-05-27 11:03:07 +02: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 11:00:45 +02:00
|
|
|
|
|
|
|
nix = config.environment.nix;
|
2009-05-25 19:41:03 +02:00
|
|
|
|
2009-05-27 11:00:45 +02:00
|
|
|
nixFallback = pkgs.nixUnstable;
|
2007-09-18 17:38:05 +02:00
|
|
|
|
2009-05-27 11:00:45 +02:00
|
|
|
manifests = config.installer.manifests; # exported here because nixos-rebuild uses it
|
2007-09-18 17:06:24 +02:00
|
|
|
|
2009-05-27 11:00:45 +02:00
|
|
|
tests = config.tests;
|
2007-09-18 17:06:24 +02:00
|
|
|
}
|