Commit 31bca5a5117b

Vincent Demeester <vincent@sbr.pm>
2025-12-22 11:04:05
feat(aion): enable audiobookshelf and lidarr services
- Complete audio services migration with audiobook and music support - Enable audiobook library access for network clients - Activate music metadata management for music library Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 99206f7
Changed files (1)
systems
systems/aion/extra.nix
@@ -90,13 +90,13 @@ in
     };
 
     audiobookshelf = serviceDefaults // {
-      enable = false;
+      enable = true;
       port = 13378;
       host = "0.0.0.0";
     };
 
     lidarr = serviceDefaults // {
-      enable = false;
+      enable = true;
       settings.server.port = exportarrServices.lidarr.servicePort;
     };