nixpkgs/default.nix

23 lines
419 B
Nix
Raw Normal View History

{ 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
{
inherit config;
system = config.system.build.system;
# The following are used by nixos-rebuild.
nixFallback = pkgs.nixUnstable;
manifests = config.installer.manifests;
tests = config.tests;
}