diff --git a/src/configuration/path_config.py b/src/configuration/path_config.py
index 7af25875eea58de081012fc6040a76a04f001d54..29dcd24e3626aca2ad3f24612399c24469eb3218 100644
--- a/src/configuration/path_config.py
+++ b/src/configuration/path_config.py
@@ -31,13 +31,13 @@ def prepare_host(create_new=True, data_path=None, sampling="daily") -> str:
     elif hostname == "zam347":
         path = f"/home/{user}/Data/toar_{sampling}/"
     elif hostname == "linux-aa9b":
-        path = f"/home/{user}/machinelearningtools/data/toar_{sampling}/"
+        path = f"/home/{user}/mlair/data/toar_{sampling}/"
     elif (len(hostname) > 2) and (hostname[:2] == "jr"):
         path = f"/p/project/cjjsc42/{user}/DATA/toar_{sampling}/"
     elif (len(hostname) > 2) and (hostname[:2] in ['jw', 'ju'] or hostname[:5] in ['hdfml']):
         path = f"/p/project/deepacf/intelliaq/{user}/DATA/toar_{sampling}/"
     elif runner_regex.match(hostname) is not None:
-        path = f"/home/{user}/machinelearningtools/data/toar_{sampling}/"
+        path = f"/home/{user}/mlair/data/toar_{sampling}/"
     else:
         raise OSError(f"unknown host '{hostname}'")
     if not os.path.exists(path):