fixed statedir for audiobookshelf

This commit is contained in:
rasmus-kirk
2025-05-30 15:14:59 +02:00
parent 7d93d0fa8c
commit 1d95ad6edb
3 changed files with 101 additions and 1 deletions
+5
View File
@@ -1,5 +1,10 @@
# Changelog # Changelog
## Unreleased
Added:
- Audiobookshelf service, with expose options
## 2025-05-28 ## 2025-05-28
Added: Added:
+5 -1
View File
@@ -8,6 +8,10 @@ with lib; let
cfg = config.nixarr.audiobookshelf; cfg = config.nixarr.audiobookshelf;
nixarr = config.nixarr; nixarr = config.nixarr;
in { in {
imports = [
./shelf-module
];
options.nixarr.audiobookshelf = { options.nixarr.audiobookshelf = {
enable = mkOption { enable = mkOption {
type = types.bool; type = types.bool;
@@ -165,7 +169,7 @@ in {
# Always prioritise Audiobookshelf IO # Always prioritise Audiobookshelf IO
systemd.services.audiobookshelf.serviceConfig.IOSchedulingPriority = 0; systemd.services.audiobookshelf.serviceConfig.IOSchedulingPriority = 0;
services.audiobookshelf = { util-nixarr.services.audiobookshelf = {
enable = cfg.enable; enable = cfg.enable;
package = cfg.package; package = cfg.package;
port = cfg.port; port = cfg.port;
@@ -0,0 +1,91 @@
{
config,
lib,
pkgs,
...
}:
with lib;
let
cfg = config.util-nixarr.services.audiobookshelf;
in
{
options.util-nixarr.services.audiobookshelf = {
enable = mkEnableOption "Audiobookshelf, self-hosted audiobook and podcast server";
package = mkPackageOption pkgs "audiobookshelf" { };
dataDir = mkOption {
description = "Path to Audiobookshelf config and metadata inside of /var/lib.";
default = "audiobookshelf";
type = types.str;
};
host = mkOption {
description = "The host Audiobookshelf binds to.";
default = "127.0.0.1";
example = "0.0.0.0";
type = types.str;
};
port = mkOption {
description = "The TCP port Audiobookshelf will listen on.";
default = 8000;
type = types.port;
};
user = mkOption {
description = "User account under which Audiobookshelf runs.";
default = "audiobookshelf";
type = types.str;
};
group = mkOption {
description = "Group under which Audiobookshelf runs.";
default = "audiobookshelf";
type = types.str;
};
openFirewall = mkOption {
description = "Open ports in the firewall for the Audiobookshelf web interface.";
default = false;
type = types.bool;
};
};
config = mkIf cfg.enable {
systemd.services.audiobookshelf = {
description = "Audiobookshelf is a self-hosted audiobook and podcast server";
after = [ "network.target" ];
wantedBy = [ "multi-user.target" ];
serviceConfig = {
Type = "simple";
User = cfg.user;
Group = cfg.group;
StateDirectory = cfg.dataDir;
WorkingDirectory = cfg.dataDir;
ExecStart = "${cfg.package}/bin/audiobookshelf --host ${cfg.host} --port ${toString cfg.port}";
Restart = "on-failure";
};
};
users.users = mkIf (cfg.user == "audiobookshelf") {
audiobookshelf = {
isSystemUser = true;
group = cfg.group;
home = "/var/lib/${cfg.dataDir}";
};
};
users.groups = mkIf (cfg.group == "audiobookshelf") {
audiobookshelf = { };
};
networking.firewall = mkIf cfg.openFirewall {
allowedTCPPorts = [ cfg.port ];
};
};
}