mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
d69710cdf4
svn path=/nixos/branches/modular-nixos/; revision=15876
21 lines
400 B
Nix
21 lines
400 B
Nix
{ configuration ? import ./lib/from-env.nix "NIXOS_CONFIG" /etc/nixos/configuration.nix
|
|
}:
|
|
|
|
let
|
|
|
|
inherit
|
|
(import ./lib/eval-config.nix {inherit configuration;})
|
|
config optionDeclarations pkgs;
|
|
|
|
in
|
|
|
|
{
|
|
system = config.system.build.system;
|
|
|
|
# The following are used by nixos-rebuild.
|
|
nixFallback = pkgs.nixUnstable;
|
|
manifests = config.installer.manifests;
|
|
|
|
tests = config.tests;
|
|
}
|