Files
dotfiles/system-modules/nx2site/audiobookshelf.nix
Lennart J. Kurzweg (Nx2) d2d1ce7830 overlays refactor
2025-06-17 19:48:31 +02:00

15 lines
362 B
Nix

{ pkgs, ... }@all: with all;
{
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;
};
};
}