mirror of
https://github.com/Superredstone/nixos.git
synced 2026-08-19 11:48:57 +02:00
16 lines
489 B
Nix
16 lines
489 B
Nix
{ config, ... }:
|
|
{
|
|
services.navidrome = {
|
|
enable = true;
|
|
environmentFile = config.sops.secrets.navidrome_env.path;
|
|
settings = {
|
|
Port = 8013;
|
|
MusicFolder = "/var/lib/nixflix/media/music/";
|
|
EnableSharing = true;
|
|
ArtistArtPriority = "external, artist.*, album/artist.*";
|
|
CoverArtPriority = "external, cover.*, folder.*, front.*, embedded";
|
|
DiscArtPriority = "disc*.*, cd*.*, cover.*, folder.*, front.*, discsubtitle, embedded";
|
|
};
|
|
};
|
|
}
|