backwards: Remove audiobookshelf module

This commit is contained in:
Alexander Heldt
2025-05-03 16:50:15 +02:00
parent 72d2bb976f
commit ecb67deed3
2 changed files with 0 additions and 30 deletions

View File

@@ -1,29 +0,0 @@
{ lib, config, ... }:
let
enabled = config.mod.audiobookshelf.enable;
in
{
options = {
mod.audiobookshelf = {
enable = lib.mkEnableOption "Enable audiobookshelf module";
};
};
config = lib.mkIf enabled {
fileSystems."/home/alex/media" = {
device = "/dev/disk/by-uuid/ad4acc0f-172c-40f8-8473-777c957e8764";
fsType = "ext4";
options = [ "nofail" ];
};
services.audiobookshelf = {
enable = true;
user = "alex";
group = "users";
host = "0.0.0.0";
port = 8000;
};
};
}

View File

@@ -15,7 +15,6 @@ in
nginx.enable = true; nginx.enable = true;
syncthing.enable = true; syncthing.enable = true;
restic.enable = true; restic.enable = true;
audiobookshelf.enable = true;
calibre-web.enable = true; calibre-web.enable = true;
}; };
}; };