27a54b1761
svn path=/nixos/trunk/; revision=28428
11 lines
247 B
Nix
11 lines
247 B
Nix
{ nixpkgs ? ../../nixpkgs
|
|
, system ? builtins.currentSystem
|
|
}:
|
|
|
|
with import ../lib/testing.nix { inherit nixpkgs system; };
|
|
|
|
runInMachine {
|
|
drv = (import nixpkgs { }).aterm;
|
|
machine = { config, pkgs, ... }: { services.sshd.enable = true; };
|
|
}
|