2007-09-18 17:06:24 +02:00
|
|
|
let
|
|
|
|
|
2008-10-07 01:23:28 +02:00
|
|
|
fromEnv = name : default :
|
|
|
|
let env = builtins.getEnv name; in
|
|
|
|
if env == "" then default else env;
|
|
|
|
configuration = import (fromEnv "NIXOS_CONFIG" /etc/nixos/configuration.nix);
|
|
|
|
nixpkgsPath = fromEnv "NIXPKGS" /etc/nixos/nixpkgs;
|
2007-09-18 17:06:24 +02:00
|
|
|
|
2008-10-07 01:23:28 +02:00
|
|
|
system = import system/system.nix { inherit configuration nixpkgsPath; };
|
2007-09-18 17:06:24 +02:00
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{ inherit (system)
|
|
|
|
activateConfiguration
|
|
|
|
bootStage2
|
|
|
|
etc
|
|
|
|
grubMenuBuilder
|
|
|
|
kernel
|
2008-02-14 21:59:04 +01:00
|
|
|
modulesTree
|
2007-09-18 17:06:24 +02:00
|
|
|
nix
|
|
|
|
system
|
|
|
|
systemPath
|
|
|
|
config
|
|
|
|
;
|
|
|
|
|
2008-02-08 16:59:15 +01:00
|
|
|
inherit (system.nixosTools)
|
|
|
|
nixosCheckout
|
|
|
|
nixosHardwareScan
|
|
|
|
nixosInstall
|
|
|
|
nixosRebuild
|
2008-03-04 00:32:17 +01:00
|
|
|
nixosGenSeccureKeys
|
2008-08-11 13:37:56 +02:00
|
|
|
;
|
|
|
|
|
|
|
|
inherit (system.initialRamdiskStuff)
|
|
|
|
bootStage1
|
|
|
|
extraUtils
|
|
|
|
initialRamdisk
|
|
|
|
modulesClosure
|
|
|
|
;
|
2008-02-08 16:59:15 +01:00
|
|
|
|
2007-09-18 17:38:05 +02:00
|
|
|
nixFallback = system.nix;
|
|
|
|
|
2007-11-09 19:49:45 +01:00
|
|
|
manifests = system.config.installer.manifests; # exported here because nixos-rebuild uses it
|
2007-09-18 17:06:24 +02:00
|
|
|
|
2008-11-18 19:00:09 +01:00
|
|
|
tests = system.config.tests;
|
2007-09-18 17:06:24 +02:00
|
|
|
}
|