nixos/prosody: disable http_files per default as it requires configuration to not break http_file_share

This commit is contained in:
Sandro Jäckel
2025-08-03 21:35:32 +02:00
parent 6db83a2f0e
commit 3ea8513fb5
@@ -182,7 +182,7 @@ let
http_files = mkOption {
type = types.bool;
default = true;
default = false;
description = "Serve static files from a directory over HTTP";
};