nixos-config/nixos/machines/chungus/media-audiobookshelf.nix

33 lines
878 B
Nix
Raw Normal View History

2023-05-28 22:52:03 +02:00
{ config, lib, pkgs, ... }:
with pkgs;
2023-05-29 15:02:36 +02:00
let
port = 8000;
group = "media";
in
2023-05-28 22:52:03 +02:00
{
2023-05-29 15:02:36 +02:00
users.users.audiobookshelf = {
isSystemUser = true;
group = group;
2023-05-28 22:52:03 +02:00
};
2023-05-29 15:02:36 +02:00
networking.firewall.allowedTCPPorts = [ port ];
networking.firewall.allowedUDPPorts = [ port ];
2023-05-28 22:52:03 +02:00
systemd.services.audiobookshelf = {
enable = true;
description = "Self-hosted audiobook server for managing and playing audiobooks";
serviceConfig = {
Type = "simple";
WorkingDirectory = "/srv/audiobookshelf";
2023-05-29 15:02:36 +02:00
ExecStart = "${unstable.audiobookshelf}/bin/audiobookshelf --port ${toString port}";
2023-05-28 22:52:03 +02:00
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" ];
};
2023-05-29 15:02:36 +02:00
2023-05-28 22:52:03 +02:00
}