add media-audiobookshelf.nix

This commit is contained in:
Ingolf Wagner 2023-05-28 22:52:03 +02:00
parent 3f7246622b
commit a6c1f6d846
Signed by: palo
GPG key ID: 76BF5F1928B9618B
2 changed files with 29 additions and 0 deletions

View file

@ -21,6 +21,7 @@
#./taskwarrior-pushover.nix
./media-share.nix
./media-audiobookshelf.nix
./media-tdarr.nix
./media-jellyfin.nix

View file

@ -0,0 +1,28 @@
{ config, lib, pkgs, ... }:
with pkgs;
{
users = {
users.audiobookshelf.isSystemUser = true;
users.audiobookshelf.group = "media";
};
networking.firewall.interfaces.wg0.allowedTCPPorts = [ 8000 ];
networking.firewall.interfaces.wg0.allowedUDPPorts = [ 8000 ];
systemd.services.audiobookshelf = {
enable = true;
description = "Self-hosted audiobook server for managing and playing audiobooks";
serviceConfig = {
Type = "simple";
WorkingDirectory = "/srv/audiobookshelf";
#ExecStart = "${unstable.audiobookshelf}/bin/audiobookshelf --host 127.0.0.1 --port 8000";
ExecStart = "${unstable.audiobookshelf}/bin/audiobookshelf --port 8000";
ExecReload = "${util-linux}/bin/kill -HUP $MAINPID";
Restart = "always";
User = config.users.users.audiobookshelf.name;
Group = config.users.users.audiobookshelf.group;
};
wantedBy = [ "multi-user.target" ];
requires = [ "network.target" ];
};
}