finally works again

This commit is contained in:
2026-08-03 13:22:28 -04:00
parent 4d72aa979a
commit a7f8971df1
16 changed files with 128 additions and 168 deletions
+15
View File
@@ -0,0 +1,15 @@
{ config, lib, pkgs, ... }:
{
services.navidrome = {
enable = true;
settings.MusicFolder = "/var/lib/music";
};
services.caddy = {
enable = true;
virtualHosts."music.grasswren.net".extraConfig = ''
reverse_proxy localhost:4533
'';
};
}