2025-03-13 23:43:22 +01:00
|
|
|
{ lib, ... }:
|
|
|
|
{
|
|
|
|
name = "audiobookshelf";
|
|
|
|
meta.maintainers = with lib.maintainers; [ wietsedv ];
|
2023-09-29 11:46:13 +02:00
|
|
|
|
2025-03-13 23:43:22 +01:00
|
|
|
nodes.machine =
|
|
|
|
{ pkgs, ... }:
|
|
|
|
{
|
|
|
|
services.audiobookshelf = {
|
|
|
|
enable = true;
|
|
|
|
port = 1234;
|
2023-09-29 11:46:13 +02:00
|
|
|
};
|
2025-03-13 23:43:22 +01:00
|
|
|
};
|
2023-09-29 11:46:13 +02:00
|
|
|
|
2025-03-13 23:43:22 +01:00
|
|
|
testScript = ''
|
|
|
|
machine.wait_for_unit("audiobookshelf.service")
|
|
|
|
machine.wait_for_open_port(1234)
|
|
|
|
machine.succeed("curl --fail http://localhost:1234/")
|
|
|
|
'';
|
|
|
|
}
|