nixpkgs/nixos/tests/run-in-machine.nix
2014-11-04 14:28:09 +01:00

9 lines
203 B
Nix

{ system ? builtins.currentSystem }:
with import ../lib/testing.nix { inherit system; };
runInMachine {
drv = pkgs.hello;
machine = { config, pkgs, ... }: { /* services.sshd.enable = true; */ };
}