My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/nixos/tests/simple.nix

17 lines
351 B

import ./make-test-python.nix ({ pkgs, ...} : {
name = "simple";
meta = with pkgs.lib.maintainers; {
maintainers = [ eelco ];
};
nodes.machine = { ... }: {
imports = [ ../modules/profiles/minimal.nix ];
};
testScript =
''
start_all()
machine.wait_for_unit("multi-user.target")
machine.shutdown()
'';
})