1import ./make-test-python.nix ({ pkgs, ... }: {
2 name = "ergo";
3 meta = with pkgs.lib.maintainers; {
4 maintainers = [ mmahut ];
5 };
6
7 nodes = {
8 machine = { ... }: {
9 services.ergo.enable = true;
10 services.ergo.api.keyHash = "324dcf027dd4a30a932c441f365a25e86b173defa4b8e58948253471b81b72cf";
11 };
12 };
13
14 testScript = ''
15 start_all()
16 machine.wait_for_unit("ergo.service")
17 '';
18})