···394394 </listitem>
395395 <listitem>
396396 <para>
397397+ The udisks2 service, available at
398398+ <literal>services.udisks2.enable</literal>, is now disabled by
399399+ default. It will automatically be enabled through services and
400400+ desktop environments as needed. This also means that polkit
401401+ will now actually be disabled by default. The default for
402402+ <literal>security.polkit.enable</literal> was already flipped
403403+ in the previous release, but udisks2 being enabled by default
404404+ re-enabled it.
405405+ </para>
406406+ </listitem>
407407+ <listitem>
408408+ <para>
397409 Add udev rules for the Teensy family of microcontrollers.
398410 </para>
399411 </listitem>
+3
nixos/doc/manual/release-notes/rl-2211.section.md
···145145146146- memtest86+ was updated from 5.00-coreboot-002 to 6.00-beta2. It is now the upstream version from https://www.memtest.org/, as coreboot's fork is no longer available.
147147148148+- The udisks2 service, available at `services.udisks2.enable`, is now disabled by default. It will automatically be enabled through services and desktop environments as needed.
149149+ This also means that polkit will now actually be disabled by default. The default for `security.polkit.enable` was already flipped in the previous release, but udisks2 being enabled by default re-enabled it.
150150+148151- Add udev rules for the Teensy family of microcontrollers.
149152150153- The `pass-secret-service` package now includes systemd units from upstream, so adding it to the NixOS `services.dbus.packages` option will make it start automatically as a systemd user service when an application tries to talk to the libsecret D-Bus API.
···19192020 services.udisks2 = {
21212222- enable = mkOption {
2323- type = types.bool;
2424- default = true;
2525- description = lib.mdDoc ''
2626- Whether to enable Udisks, a DBus service that allows
2727- applications to query and manipulate storage devices.
2828- '';
2929- };
2222+ enable = mkEnableOption "udisks2, a DBus service that allows applications to query and manipulate storage devices.";
30233124 settings = mkOption rec {
3225 type = types.attrsOf settingsFormat.type;
-1
nixos/modules/virtualisation/container-config.nix
···8899 # Disable some features that are not useful in a container.
1010 nix.optimise.automatic = mkDefault false; # the store is host managed
1111- services.udisks2.enable = mkDefault false;
1211 powerManagement.enable = mkDefault false;
1312 documentation.nixos.enable = mkDefault false;
1413