diff --git a/clanModules/disk-id/roles/default.nix b/clanModules/disk-id/roles/default.nix index 870a2a5fd..36d21a065 100644 --- a/clanModules/disk-id/roles/default.nix +++ b/clanModules/disk-id/roles/default.nix @@ -14,7 +14,7 @@ pkgs.bash ]; script = '' - uuid=$(bash ${../uuid4.sh}) + uuid=$(bash ${../../uuid4.sh}) # Remove the hyphens from the UUID uuid_no_hyphens=$(echo -n "$uuid" | tr -d '-') diff --git a/clanModules/machine-id/roles/default.nix b/clanModules/machine-id/roles/default.nix index 8d260c260..062c0c6ca 100644 --- a/clanModules/machine-id/roles/default.nix +++ b/clanModules/machine-id/roles/default.nix @@ -32,7 +32,7 @@ in pkgs.bash ]; script = '' - uuid=$(bash ${../uuid4.sh}) + uuid=$(bash ${../../uuid4.sh}) # Remove the hyphens from the UUID uuid_no_hyphens=$(echo -n "$uuid" | tr -d '-')