use regular address instead of unix socket for navidrome

this fixes permission issues on the unix socket
This commit is contained in:
xunuwu 2025-05-16 14:19:14 +02:00
parent cd4f3341f4
commit fb1fc75908
3 changed files with 3 additions and 3 deletions

View file

@ -3,7 +3,6 @@
pkgs,
...
}: {
users.groups.${config.services.navidrome.group}.members = ["caddy"]; # for caddy to access socket file
services.navidrome = {
enable = true;
package = pkgs.navidrome.overrideAttrs {
@ -12,7 +11,7 @@
};
settings = {
MusicFolder = "/media/library/music";
Address = "unix:/var/lib/navidrome/navidrome.sock";
Address = config.vpnNamespaces."wg".bridgeAddress;
EnableSharing = true;
};
};