···1920 <itemizedlist>
21 <listitem>
00000000000000000000022 <para>
23 User channels are now in the default <literal>NIX_PATH</literal>, allowing
24 users to use their personal <command>nix-channel</command> defined
···1920 <itemizedlist>
21 <listitem>
22+ <para>
23+ Support for wrapping binaries using <literal>firejail</literal> has been
24+ added through <varname>programs.firejail.wrappedBinaries</varname>.
25+ </para>
26+ <para>
27+ For example
28+ </para>
29+<programlisting>
30+programs.firejail = {
31+ enable = true;
32+ wrappedBinaries = {
33+ firefox = "${lib.getBin pkgs.firefox}/bin/firefox";
34+ mpv = "${lib.getBin pkgs.mpv}/bin/mpv";
35+ };
36+};
37+</programlisting>
38+ <para>
39+ This will place <literal>firefox</literal> and <literal>mpv</literal> binaries in the global path wrapped by firejail.
40+ </para>
41+ </listitem>
42+ <listitem>
43 <para>
44 User channels are now in the default <literal>NIX_PATH</literal>, allowing
45 users to use their personal <command>nix-channel</command> defined