From fb5d76b89e8b0084fb147d79af5481e09b889386 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 15 Apr 2014 15:32:27 +0200 Subject: Fix test evaluation --- tests/nix-copy-closure.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/nix-copy-closure.nix') diff --git a/tests/nix-copy-closure.nix b/tests/nix-copy-closure.nix index 66c19a45d42d..bfd708404ddd 100644 --- a/tests/nix-copy-closure.nix +++ b/tests/nix-copy-closure.nix @@ -4,14 +4,14 @@ with import { inherit system; }; -makeTest ({ pkgs, ... }: let pkgA = pkgs.aterm; pkgB = pkgs.wget; in { +makeTest (let pkgA = pkgs.aterm; pkgB = pkgs.wget; in { nodes = { client = { config, pkgs, ... }: { virtualisation.writableStore = true; virtualisation.pathsInNixDB = [ pkgA ]; - environment.nix = nix; + nix.package = nix; }; server = @@ -19,7 +19,7 @@ makeTest ({ pkgs, ... }: let pkgA = pkgs.aterm; pkgB = pkgs.wget; in { { services.openssh.enable = true; virtualisation.writableStore = true; virtualisation.pathsInNixDB = [ pkgB ]; - environment.nix = nix; + nix.package = nix; }; }; -- cgit 1.4.1