mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
17 lines
345 B
Nix
17 lines
345 B
Nix
import ./make-test.nix ({ pkgs, ...} : {
|
|
name = "simple";
|
|
meta = with pkgs.stdenv.lib.maintainers; {
|
|
maintainers = [ eelco ];
|
|
};
|
|
|
|
machine = { ... }: {
|
|
imports = [ ../modules/profiles/minimal.nix ];
|
|
};
|
|
|
|
testScript =
|
|
''
|
|
startAll;
|
|
$machine->waitForUnit("multi-user.target");
|
|
$machine->shutdown;
|
|
'';
|
|
})
|