summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2011-01-13 11:39:03 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2011-01-13 11:39:03 +0000
commit2ac09578c0957422668b58c22f3ab7644afb59f7 (patch)
tree585ba9e8bc16db7760b30375736156f7d6bc714b /tests
parent06a239a699be863149511111564e59de9bc42189 (diff)
downloadnixpkgs-2ac09578c0957422668b58c22f3ab7644afb59f7.tar
nixpkgs-2ac09578c0957422668b58c22f3ab7644afb59f7.tar.gz
nixpkgs-2ac09578c0957422668b58c22f3ab7644afb59f7.tar.bz2
nixpkgs-2ac09578c0957422668b58c22f3ab7644afb59f7.tar.lz
nixpkgs-2ac09578c0957422668b58c22f3ab7644afb59f7.tar.xz
nixpkgs-2ac09578c0957422668b58c22f3ab7644afb59f7.tar.zst
nixpkgs-2ac09578c0957422668b58c22f3ab7644afb59f7.zip
* runInMachine: properly evaluate the machine configuration.
svn path=/nixos/trunk/; revision=25536
Diffstat (limited to 'tests')
-rw-r--r--tests/run-in-machine.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/run-in-machine.nix b/tests/run-in-machine.nix
index 9903c37b73a..5f790a11aba 100644
--- a/tests/run-in-machine.nix
+++ b/tests/run-in-machine.nix
@@ -7,5 +7,5 @@ with import ../lib/testing.nix { inherit nixpkgs services system; };
 
 runInMachine {
   drv = (import nixpkgs { }).aterm;
-  machine = { config, pkgs, ... }: { };
-}
\ No newline at end of file
+  machine = { config, pkgs, ... }: { services.sshd.enable = true; };
+}