nixos-config/2configs/home/music.nix

28 lines
684 B
Nix
Raw Normal View History

{ config, ... }:
let
internal-ip = "192.168.111.11";
2021-12-10 08:48:36 +01:00
port = 4533;
in
{
2021-12-10 08:48:36 +01:00
services.navidrome.enable = true;
services.navidrome.settings = {
2022-06-06 21:08:21 +02:00
MusicFolder = "/media/cryptX/music/kinder";
2021-12-10 08:48:36 +01:00
Address = "0.0.0.0";
};
2021-12-10 08:48:36 +01:00
state = [ "/var/lib/navidrome" ];
# networking.firewall.allowedTCPPorts = [ 4040 ];
# state = [ config.services.airsonic.home ];
services.nginx.virtualHosts."navidrome" = {
serverAliases = [
2021-12-10 08:48:36 +01:00
"navidrome.lan"
"music" "music.lan"
"musik" "musik.lan"
];
locations."/".proxyPass = "http://localhost:${toString port}";
locations."/".proxyWebsockets = true;
};
networking.firewall.allowedTCPPorts = [ port ];
}