9 lines
203 B
Nix
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; */ };
|
|
}
|