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

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

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