30 lines
843 B
TOML
30 lines
843 B
TOML
# NaviPod Configuration Example
|
|
# Copy this file to config.toml and fill in your details
|
|
|
|
[navidrome]
|
|
# URL of your Navidrome instance
|
|
url = "http://localhost:4533"
|
|
# Your Navidrome username
|
|
username = "your_username"
|
|
# Your Navidrome password
|
|
password = "your_password"
|
|
|
|
[ipod]
|
|
# Mount point of your iPod (e.g., /media/ipod or /mnt/ipod)
|
|
mount_point = "/media/ipod"
|
|
# Firmware type: "stock" or "rockbox"
|
|
firmware = "rockbox"
|
|
|
|
[sync]
|
|
# Sync albums
|
|
albums = true
|
|
# Sync playlists from Navidrome to iPod (stored as M3U8 files in Playlists folder)
|
|
playlists = true
|
|
# Preferred audio format (mp3, flac, ogg, etc.)
|
|
format = "mp3"
|
|
|
|
[listenbrainz]
|
|
# Your ListenBrainz user token (get it from https://listenbrainz.org/profile/)
|
|
# This is optional - only needed if you want to scrobble from iPod to ListenBrainz
|
|
token = "your_listenbrainz_token_here"
|
|
|