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

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

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