challenger: remove navidrome

This commit is contained in:
2025-03-04 21:23:37 +01:00
parent a455c7ec07
commit 9ab61ca7de
3 changed files with 0 additions and 22 deletions

View File

@@ -1,20 +0,0 @@
{ config, lib, pkgs, ... }:
let
domain = "music.feal.no";
cfg = config.services.navidrome;
in {
services.navidrome = {
enable = true;
settings = {
BaseUrl = "https://${domain}";
EnableSharing = true;
EnableTranscodingConfig = true;
MusicFolder = "/tank/media/music/";
SubsonicArtistParticipations = true;
};
};
services.nginx.virtualHosts."${domain}".locations."/" = {
proxyPass = "http://${cfg.settings.Address}:${toString cfg.settings.Port}";
};
}