I’m trying to set up osrm-backend following the instructions here. It uses commands such as osm-extract, but even though I have osrm-backend installed, I don’t have the command available. Is there something else I must install? This is what I have. (The service is failing, of course.)
{
environment.systemPackages = with pkgs; [
osrm-backend osmium-tool libosmium
];
services = {
osrm = {
enable = true;
dataFile = "/var/lib/osrm/new-mexico-latest.osm";
};
};
}