···8888 updateManyAttrsByPath;
8989 inherit (self.lists) singleton forEach foldr fold foldl foldl' imap0 imap1
9090 concatMap flatten remove findSingle findFirst any all count
9191- optional optionals toList range partition zipListsWith zipLists
9191+ optional optionals toList range replicate partition zipListsWith zipLists
9292 reverseList listDfs toposort sort naturalSort compareLists take
9393 drop sublist last init crossLists unique intersectLists
9494 subtractLists mutuallyExclusive groupBy groupBy';
+12
lib/lists.nix
···303303 else
304304 genList (n: first + n) (last - first + 1);
305305306306+ /* Return a list with `n` copies of an element.
307307+308308+ Type: replicate :: int -> a -> [a]
309309+310310+ Example:
311311+ replicate 3 "a"
312312+ => [ "a" "a" "a" ]
313313+ replicate 2 true
314314+ => [ true true ]
315315+ */
316316+ replicate = n: elem: genList (_: elem) n;
317317+306318 /* Splits the elements of a list in two lists, `right` and
307319 `wrong`, depending on the evaluation of a predicate.
308320
···116116 <listitem>
117117 <para>
118118 <link xlink:href="https://dm3mat.darc.de/qdmr/">QDMR</link>, a
119119- gui application and command line tool for programming cheap
120120- DMR radios
119119+ GUI application and command line tool for programming DMR
120120+ radios
121121 <link linkend="opt-programs.qdmr.enable">programs.qdmr</link>
122122 </para>
123123 </listitem>
+1-1
nixos/doc/manual/release-notes/rl-2305.section.md
···38383939- [mmsd](https://gitlab.com/kop316/mmsd), a lower level daemon that transmits and recieves MMSes. Available as [services.mmsd](#opt-services.mmsd.enable).
40404141-- [QDMR](https://dm3mat.darc.de/qdmr/), a gui application and command line tool for programming cheap DMR radios [programs.qdmr](#opt-programs.qdmr.enable)
4141+- [QDMR](https://dm3mat.darc.de/qdmr/), a GUI application and command line tool for programming DMR radios [programs.qdmr](#opt-programs.qdmr.enable)
42424343- [v2rayA](https://v2raya.org), a Linux web GUI client of Project V which supports V2Ray, Xray, SS, SSR, Trojan and Pingtunnel. Available as [services.v2raya](options.html#opt-services.v2raya.enable).
4444
+1-2
nixos/modules/config/zram.nix
···3232 };
33333434 swapDevices = lib.mkOption {
3535- default = 0;
3636- example = 1;
3535+ default = 1;
3736 type = lib.types.int;
3837 description = lib.mdDoc ''
3938 Number of zram devices to be used as swap, recommended is 1.
···14721472 subversion_1_10 = throw "subversion_1_10 has been removed as it has reached its end of life"; # Added 2022-04-26
14731473 subversion19 = throw "subversion19 has been removed as it has reached its end of life"; # Added 2021-03-31
14741474 sudolikeaboss = throw "sudolikeaboss is no longer maintained by upstream"; # Added 2022-04-16
14751475+ sumneko-lua-language-server = lua-language-server; # Added 2023-02-07
14751476 sundials_3 = throw "sundials_3 was removed in 2020-02. outdated and no longer needed";
14761477 surf-webkit2 = throw "'surf-webkit2' has been renamed to/replaced by 'surf'"; # Converted to throw 2022-02-22
14771478 swec = throw "swec has been removed; broken and abandoned upstream"; # Added 2021-10-14