···7070 </listitem>
7171 <listitem>
7272 <para>
7373+ <link xlink:href="https://github.com/hzeller/gmrender-resurrect">gmediarender</link>,
7474+ a simple, headless UPnP/DLNA renderer. Available as
7575+ <link xlink:href="options.html#opt-services.gmediarender.enable">services.gmediarender</link>.
7676+ </para>
7777+ </listitem>
7878+ <listitem>
7979+ <para>
7380 <link xlink:href="https://github.com/StevenBlack/hosts">stevenblack-blocklist</link>,
7481 A unified hosts file with base extensions for blocking
7582 unwanted websites. Available as
+2
nixos/doc/manual/release-notes/rl-2305.section.md
···26262727- [fzf](https://github.com/junegunn/fzf), a command line fuzzyfinder. Available as [programs.fzf](#opt-programs.fzf.fuzzyCompletion).
28282929+- [gmediarender](https://github.com/hzeller/gmrender-resurrect), a simple, headless UPnP/DLNA renderer. Available as [services.gmediarender](options.html#opt-services.gmediarender.enable).
3030+2931- [stevenblack-blocklist](https://github.com/StevenBlack/hosts), A unified hosts file with base extensions for blocking unwanted websites. Available as [networking.stevenblack](options.html#opt-networking.stevenblack.enable).
30323133- [atuin](https://github.com/ellie/atuin), a sync server for shell history. Available as [services.atuin](#opt-services.atuin.enable).
···384384 description = mdDoc ''
385385 Extra configuration options for Syncthing.
386386 See <https://docs.syncthing.net/users/config.html>.
387387+ Note that this attribute set does not exactly match the documented
388388+ xml format. Instead, this is the format of the json rest api. There
389389+ are slight differences. For example, this xml:
390390+ ```xml
391391+ <options>
392392+ <listenAddress>default</listenAddress>
393393+ <minHomeDiskFree unit="%">1</minHomeDiskFree>
394394+ </options>
395395+ ```
396396+ corresponds to the json:
397397+ ```json
398398+ {
399399+ options: {
400400+ listenAddresses = [
401401+ "default"
402402+ ];
403403+ minHomeDiskFree = {
404404+ unit = "%";
405405+ value = 1;
406406+ };
407407+ };
408408+ }
409409+ ```
387410 '';
388411 example = {
389412 options.localAnnounceEnabled = false;
+6
nixos/modules/virtualisation/lxc-container.nix
···150150 source = config.system.build.toplevel + "/init";
151151 target = "/sbin/init";
152152 }
153153+ # Technically this is not required for lxc, but having also make this configuration work with systemd-nspawn.
154154+ # Nixos will setup the same symlink after start.
155155+ {
156156+ source = config.system.build.toplevel + "/etc/os-release";
157157+ target = "/etc/os-release";
158158+ }
153159 ];
154160155161 extraCommands = "mkdir -p proc sys dev";
···4343 # disable the included zlib explicitly as it otherwise still compiles and
4444 # links them even.
4545 "--with-included-zlib=no"
4646+ ] ++ lib.optionals (stdenv.hostPlatform.isMusl && stdenv.hostPlatform.isx86_64) [
4747+ # fix `multiversioning needs 'ifunc' which is not supported on this target` error
4848+ "--disable-roll-simd"
4649 ];
47504851 enableParallelBuilding = true;