From bcbfd8d3868b8433bab4bae2821b73fbdc89825b Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Fri, 27 Mar 2009 09:29:11 +0000 Subject: [PATCH] Complete nixpkgsPath->nixpkgs rename svn path=/nixos/trunk/; revision=14732 --- default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/default.nix b/default.nix index 46f2d265216..d55adf2115b 100644 --- a/default.nix +++ b/default.nix @@ -4,9 +4,9 @@ let 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; + nixpkgs = fromEnv "NIXPKGS" /etc/nixos/nixpkgs; - system = import system/system.nix { inherit configuration nixpkgsPath; }; + system = import system/system.nix { inherit configuration nixpkgs; }; in