Jump to content

Navidrome: Difference between revisions

From Official NixOS Wiki
Onny (talk | contribs)
Add note on file path permissions
Onny (talk | contribs)
Add note on enable public sharing
Line 11: Line 11:
     "/mnt/audio/music"
     "/mnt/audio/music"
   ];
   ];
};
</syntaxhighlight>
=== Tips and tricks ===
==== Enable sharing ====
Single tracks, albums or playlists can be publicly shared. To enable the feature, add<syntaxhighlight lang="nix">
services.navidrome = {
  enable = true;
  settings.EnableSharing = true;
};
};
</syntaxhighlight>
</syntaxhighlight>

Revision as of 10:57, 16 February 2026

Navidrome is a self-hosted music streaming server that allows users to manage and play their personal music collections from various devices. Designed with a user-friendly interface, it supports features like playlists, searching, and streaming, all while emphasizing privacy and data ownership.

Setup

Simply add to your system configuration and apply

services.navidrome.enable = true;

The service should be available add http://127.0.0.1:4533. Continue adding an admin login including setting a password. If you have your music library outside of the systemd unit profile path, you'll add to have it to BindReadOnlypaths

systemd.services.navidrome.serviceConfig = {
  BindReadOnlyPaths = [
    "/mnt/audio/music"
  ];
};

Tips and tricks

Enable sharing

Single tracks, albums or playlists can be publicly shared. To enable the feature, add

services.navidrome = {
  enable = true;
  settings.EnableSharing = true;
};