1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-09 09:36:20 +09:00
nixpkgs/nixos/tests/lact.nix
John Titor 202780360b nixosTest.lact: init
Signed-off-by: John Titor <50095635+JohnRTitor@users.noreply.github.com>
2025-05-30 03:43:04 +05:30

18 lines
301 B
Nix

{ pkgs, ... }:
{
name = "lact";
meta = {
inherit (pkgs.lact.meta) maintainers;
};
nodes.machine =
{ config, pkgs, ... }:
{
services.lact.enable = true;
};
testScript = ''
machine.wait_for_unit("lactd.service")
machine.wait_for_file("/run/lactd.sock")
'';
}