diff options
Diffstat (limited to 'customized/prosody.nix')
-rw-r--r-- | customized/prosody.nix | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/customized/prosody.nix b/customized/prosody.nix index a025ac5f..a3445517 100644 --- a/customized/prosody.nix +++ b/customized/prosody.nix | |||
@@ -54,12 +54,12 @@ stdenv.mkDerivation rec { | |||
54 | ${copyModules} | 54 | ${copyModules} |
55 | ${copyExtraModules} | 55 | ${copyExtraModules} |
56 | wrapProgram $out/bin/prosody \ | 56 | wrapProgram $out/bin/prosody \ |
57 | --set LUA_PATH "${luaPath};" \ | 57 | --set LUA_PATH '${luaPath};' \ |
58 | --set LUA_CPATH "${luaCPath};" | 58 | --set LUA_CPATH '${luaCPath};' |
59 | wrapProgram $out/bin/prosodyctl \ | 59 | wrapProgram $out/bin/prosodyctl \ |
60 | --add-flags '--config "/etc/prosody/prosody.cfg.lua"' \ | 60 | --add-flags '--config "/etc/prosody/prosody.cfg.lua"' \ |
61 | --set LUA_PATH "${luaPath};" \ | 61 | --set LUA_PATH '${luaPath};' \ |
62 | --set LUA_CPATH "${luaCPath};" | 62 | --set LUA_CPATH '${luaCPath};' |
63 | ''; | 63 | ''; |
64 | 64 | ||
65 | meta = { | 65 | meta = { |