This repository has been archived on 2026-02-28. You can view files and clone it, but cannot push or open issues or pull requests.
2025-09-29 00:15:16 +02:00

17 lines
258 B
Nix

self:
{ config, lib, pkgs, ... }:
{
name = "example-test";
nodes.machine = {
imports = [ self.nixosModules.default ];
services.spacebarchat-server.enable = true;
};
testScript = ''
machine.wait_for_unit("spacebarchat-server")
'';
}