stockholm/makefu/2configs/home/music.nix

31 lines
805 B
Nix
Raw Normal View History

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