add audiobookshelf

This commit is contained in:
xunuwu 2025-05-08 06:52:57 +02:00
parent 8ef95723e5
commit 9203ef365b
5 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,10 @@
{config, ...}: {
services.audiobookshelf = {
enable = true;
host = "0.0.0.0";
};
services.restic.backups.hopper.paths = [
"/var/lib/${config.services.audiobookshelf.dataDir}"
];
}