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

+1 -1
+1 -1
nixos/modules/services/hardware/udisks2.nix
··· 46 46 serviceConfig = { 47 47 Type = "dbus"; 48 48 BusName = "org.freedesktop.UDisks2"; 49 - ExecStart = "${pkgs.udisks2}/lib/udisks2/udisksd --no-debug"; 49 + ExecStart = "${pkgs.udisks2}/libexec/udisks2/udisksd --no-debug"; 50 50 }; 51 51 }; 52 52 };