nixos/hosts/hub/apps/audiobookshelf.nix

12 lines
295 B
Nix

{ pkgs, ... }:
{
services = {
audiobookshelf.enable = true;
caddy.virtualHosts."https://audiobookshelf.tailc50184.ts.net".extraConfig = ''
bind tailscale/audiobookshelf
reverse_proxy localhost:8000
'';
};
environment.systemPackages = with pkgs; [ audible-cli ];
}