audiobookshelf

This commit is contained in:
Lennart J. Kurzweg (Nx2)
2025-01-27 22:19:32 +01:00
parent ac36fa13ac
commit 9c96585401
3 changed files with 16 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
{ pkgs, ... }:
{
services = {
audiobookshelf = {
# authentication is mangaed imperatively in the web interface upon first start
enable = true;
# user = "audiobookshelf";
# group = "audiobookshelf";
# host = "127.0.0.1";
port = 11648; # spells out audi(o)
package = pkgs.audiobookshelf;
};
};
}