mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
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.
This commit is contained in:
parent
c38a9b607f
commit
6befeb6818
@ -46,7 +46,7 @@ with lib;
|
||||
serviceConfig = {
|
||||
Type = "dbus";
|
||||
BusName = "org.freedesktop.UDisks2";
|
||||
ExecStart = "${pkgs.udisks2}/lib/udisks2/udisksd --no-debug";
|
||||
ExecStart = "${pkgs.udisks2}/libexec/udisks2/udisksd --no-debug";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user