From 8ce1b1b5bf0762cc1bb08b50119c7a754bb307fa Mon Sep 17 00:00:00 2001
From: Benoit Donneaux <benoit@leastauthority.com>
Date: Mon, 27 Nov 2023 15:41:56 +0100
Subject: [PATCH] Fix path weirdness in HRO as previously done for PS

Signed-off-by: Benoit Donneaux <benoit@leastauthority.com>
---
 morph/grid/hro-cloud/grid.nix | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/morph/grid/hro-cloud/grid.nix b/morph/grid/hro-cloud/grid.nix
index bd7ee0f6..7e0f9248 100644
--- a/morph/grid/hro-cloud/grid.nix
+++ b/morph/grid/hro-cloud/grid.nix
@@ -61,8 +61,8 @@ let
 
   defineStorageNode = name: { vpnIP, stateVersion }:
   let
-    nodecfg = import "${./.}/${name}-config.nix";
-    hardware ="${./.}/${name}-hardware.nix";
+    nodecfg = import (./. + "/${name}-config.nix");
+    hardware = (./. + "/${name}-hardware.nix");
   in {
     imports = [
       # Get some of the very lowest-level system configuration for this
-- 
GitLab