summary refs log tree commit diff
path: root/nixos/tests/run-in-machine.nix
blob: d1102f8d407310425e6a3f5bccdc823dfc71e850 (plain) (blame)
1
2
3
4
5
6
7
8
{ system ? builtins.currentSystem }:

with import ../lib/testing.nix { inherit system; };

runInMachine {
  drv = pkgs.hello;
  machine = { config, pkgs, ... }: { /* services.sshd.enable = true; */ };
}