challenger: remove navidrome

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

View File

@ -17,7 +17,6 @@
# ./services/ersatztv.nix
./services/jellyfin.nix
./services/komga.nix
./services/navidrome.nix
./services/nextcloud.nix
./services/nginx.nix
./services/postgres.nix

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}";
};
}

View File

@ -67,6 +67,5 @@ in {
};
"jf.feal.no" = publicProxy "http://jellyfin.home.feal.no/" { };
"iam.feal.no" = publicProxy "http://${keycloak.http-host}:${toString keycloak.http-port}" { };
"music.feal.no" = publicProxy "http://challenger.home.feal.no/" { };
};
}