28 lines
684 B
Nix
28 lines
684 B
Nix
{ config, ... }:
|
|
let
|
|
internal-ip = "192.168.111.11";
|
|
port = 4533;
|
|
in
|
|
{
|
|
services.navidrome.enable = true;
|
|
services.navidrome.settings = {
|
|
MusicFolder = "/media/cryptX/music/kinder";
|
|
Address = "0.0.0.0";
|
|
};
|
|
|
|
state = [ "/var/lib/navidrome" ];
|
|
# networking.firewall.allowedTCPPorts = [ 4040 ];
|
|
# state = [ config.services.airsonic.home ];
|
|
services.nginx.virtualHosts."navidrome" = {
|
|
serverAliases = [
|
|
"navidrome.lan"
|
|
"music" "music.lan"
|
|
"musik" "musik.lan"
|
|
];
|
|
|
|
locations."/".proxyPass = "http://localhost:${toString port}";
|
|
locations."/".proxyWebsockets = true;
|
|
};
|
|
networking.firewall.allowedTCPPorts = [ port ];
|
|
}
|