17 lines
346 B
Nix
17 lines
346 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
services.navidrome = {
|
|
enable = false; #doesnt build 24.02.2026
|
|
settings = {
|
|
Scanner.Schedule = "@every 24h";
|
|
MusicFolder = "/zstorage/media/music";
|
|
EnableSharing = true;
|
|
BaseUrl = "https://music.kylekrein.com";
|
|
FFmpegPath = "${pkgs.ffmpeg}/bin/ffmpeg";
|
|
};
|
|
};
|
|
}
|