nixos/mopidy: fmt

This commit is contained in:
Felix Buehler 2024-11-14 23:45:07 +01:00
parent 8f6ffd06a4
commit dddc9d800a

View File

@ -1,12 +1,17 @@
import ./make-test-python.nix ({ pkgs, ... }: {
name = "mopidy";
import ./make-test-python.nix (
{ pkgs, ... }:
{
name = "mopidy";
nodes.machine = { ... }: {
services.mopidy.enable = true;
};
nodes.machine =
{ ... }:
{
services.mopidy.enable = true;
};
testScript = ''
machine.wait_for_unit("mopidy")
machine.wait_for_open_port(6680)
'';
})
testScript = ''
machine.wait_for_unit("mopidy")
machine.wait_for_open_port(6680)
'';
}
)