blob: d98117bee7a7096724caee225e6b9311cd0f7dc0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
{ lib, ... }:
let
directory = "/opt/navidrome";
in
{
systemd.tmpfiles.rules =
map (x: "d ${x} 0755 share share - -") (lib.lists.singleton directory);
virtualisation.oci-containers.containers.navidrome = {
image = "deluan/navidrome:latest";
autoStart = true;
ports = [
"4533:4533"
];
volumes = [
"${directory}/data:/data"
"/lagoon/media/music:/music:ro"
];
environment = {
ND_SCANSCHEDULE = "1h";
ND_LOGLEVEL = "info";
ND_SESSIONTIMEOUT = "24h";
ND_ENABLEUSEREDITING = "false";
};
};
services.caddy.virtualHosts."radioactive.brownbread.net".extraConfig = ''
encode zstd gzip
reverse_proxy http://localhost:4533
'';
}
|