summary refs log tree commit diff
path: root/nix/tests/test_1.nix
blob: 54543e4089323f099d286fec9114ab033e26042e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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")
  '';
}