Personal-use NixOS configuration
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Run formatter

encode42 c1a563e6 967a01fb

+8 -2
+8 -2
hosts/index/config/media/audiobookshelf.nix
··· 1 - { flakeRoot, config, lib, ... }: 1 + { 2 + flakeRoot, 3 + config, 4 + lib, 5 + ... 6 + }: 2 7 3 8 let 4 9 audiobookshelfModule = import (flakeRoot + /packages/server/media/audiobookshelf.nix) { ··· 25 30 dataDir = "/mnt/apps/audiobookshelf"; 26 31 }; 27 32 28 - systemd.services.audiobookshelf.serviceConfig.WorkingDirectory = lib.mkForce config.services.audiobookshelf.dataDir; 33 + systemd.services.audiobookshelf.serviceConfig.WorkingDirectory = 34 + lib.mkForce config.services.audiobookshelf.dataDir; 29 35 }