nixos/bluetooth: don't install obex tools by default

This commit is contained in:
rnhmjoj 2019-06-21 11:17:33 +02:00
parent 6317f5b81c
commit 1598f3d257
No known key found for this signature in database
GPG key ID: BFBAF4C975F76450
2 changed files with 8 additions and 1 deletions

View file

@ -199,6 +199,13 @@
This has led to drastically reduced closed sizes for some rust crates since development dependencies are now in the <literal>lib</literal> output.
</para>
</listitem>
<listitem>
<para>
The packages <literal>openobex</literal> and <literal>obexftp</literal>
are no loger installed when enabling bluetooth via
<option>hardware.bluetooth.enable</option>.
</para>
</listitem>
</itemizedlist>
</section>

View file

@ -72,7 +72,7 @@ in {
};
};
environment.systemPackages = [ bluez-bluetooth pkgs.openobex pkgs.obexftp ];
environment.systemPackages = [ bluez-bluetooth ];
environment.etc = singleton {
source = pkgs.writeText "main.conf" (generators.toINI { } cfg.config + optionalString (cfg.extraConfig != null) cfg.extraConfig);