···11821182 other and share data.
11831183 </para>
11841184 </listitem>
11851185+ <listitem>
11861186+ <para>
11871187+ <literal>lua</literal> and <literal>luajit</literal>
11881188+ interpreters have been patched to avoid looking into /usr/lib
11891189+ directories, thus increasing the purity of the build.
11901190+ </para>
11911191+ </listitem>
11851192 </itemizedlist>
11861193 </section>
11871194</section>
+3
nixos/doc/manual/release-notes/rl-2111.section.md
···335335- `rofi` has been updated from '1.6.1' to '1.7.0', one important thing is the removal of the old xresources based configuration setup. Read more [in rofi's changelog](https://github.com/davatorium/rofi/blob/cb12e6fc058f4a0f4f/Changelog#L1).
336336337337- ipfs now defaults to not listening on you local network. This setting was change as server providers won't accept port scanning on their private network. If you have several ipfs instances running on a network you own, feel free to change the setting `ipfs.localDiscovery = true;`. localDiscovery enables different instances to discover each other and share data.
338338+339339+- `lua` and `luajit` interpreters have been patched to avoid looking into /usr/lib
340340+ directories, thus increasing the purity of the build.
+8-19
nixos/modules/services/amqp/rabbitmq.nix
···135135 description = "The list of directories containing external plugins";
136136 };
137137138138- managementPlugin = mkOption {
139139- description = "The options to run the management plugin";
140140- type = types.submodule {
141141- options = {
142142- enable = mkOption {
143143- default = false;
144144- type = types.bool;
145145- description = ''
146146- Whether to enable the management plugin
147147- '';
148148- };
149149- port = mkOption {
150150- default = 15672;
151151- type = types.port;
152152- description = ''
153153- On which port to run the management plugin
154154- '';
155155- };
156156- };
138138+ managementPlugin = {
139139+ enable = mkEnableOption "the management plugin";
140140+ port = mkOption {
141141+ default = 15672;
142142+ type = types.port;
143143+ description = ''
144144+ On which port to run the management plugin
145145+ '';
157146 };
158147 };
159148 };
···2121 description = "Tokenizer and sentence splitter for German and English web texts";
2222 homepage = "https://github.com/tsproisl/SoMaJo";
2323 license = licenses.gpl3Plus;
2424- maintainers = with maintainers; [ danieldk ];
2424+ maintainers = with maintainers; [ ];
2525 };
2626}