2011-01-13 11:54:07 +01:00
|
|
|
{ nixpkgs ? ../../nixpkgs
|
|
|
|
, services ? ../../services
|
|
|
|
, system ? builtins.currentSystem
|
|
|
|
}:
|
|
|
|
|
|
|
|
with import ../lib/testing.nix { inherit nixpkgs services system; };
|
|
|
|
|
|
|
|
runInMachine {
|
|
|
|
drv = (import nixpkgs { }).aterm;
|
2011-01-13 12:39:03 +01:00
|
|
|
machine = { config, pkgs, ... }: { services.sshd.enable = true; };
|
|
|
|
}
|