udisks2 service: Fix ExecStart path

It seems that with the latest update to `udisks2`, the ExecStart path
for the daemon changed from `/lib/udisks2` to `/libexec/udisks2`. This
commit reflects that change for our purposes.

devhell 6befeb68 c38a9b60

Changed files
+1 -1
nixos
modules
services
hardware
+1 -1
nixos/modules/services/hardware/udisks2.nix
···
serviceConfig = {
Type = "dbus";
BusName = "org.freedesktop.UDisks2";
-
ExecStart = "${pkgs.udisks2}/lib/udisks2/udisksd --no-debug";
+
ExecStart = "${pkgs.udisks2}/libexec/udisks2/udisksd --no-debug";
};
};
};