2025-03-13 22:47:51 +01:00
|
|
|
{ lib, ... }:
|
|
|
|
{
|
|
|
|
name = "actual";
|
|
|
|
meta.maintainers = [ lib.maintainers.oddlama ];
|
2024-10-11 03:06:31 +02:00
|
|
|
|
2025-03-13 22:47:51 +01:00
|
|
|
nodes.machine =
|
|
|
|
{ ... }:
|
|
|
|
{
|
|
|
|
services.actual.enable = true;
|
|
|
|
};
|
2024-10-11 03:06:31 +02:00
|
|
|
|
2025-03-13 22:47:51 +01:00
|
|
|
testScript = ''
|
|
|
|
machine.wait_for_open_port(3000)
|
|
|
|
machine.succeed("curl -fvvv -Ls http://localhost:3000/ | grep 'Actual'")
|
|
|
|
'';
|
|
|
|
}
|