From 351649c2dd900875da88ac374ef4307ca1e7e41f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Nicolas=20=E2=80=9CNiols=E2=80=9D=20Jeannerod?=
 <nicolas.jeannerod@tweag.io>
Date: Fri, 20 Sep 2024 18:25:21 +0200
Subject: [PATCH] [HACK] comment out virtualisation

---
 fediversity/garage.nix | 26 +++++++++++++-------------
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/fediversity/garage.nix b/fediversity/garage.nix
index 84af6627..2c3e0064 100644
--- a/fediversity/garage.nix
+++ b/fediversity/garage.nix
@@ -132,19 +132,19 @@ in
   };
 
   config = lib.mkIf config.fediversity.enable {
-    virtualisation.diskSize = 2048;
-    virtualisation.forwardPorts = [
-      {
-        from = "host";
-        host.port = config.fediversity.internal.garage.rpc.port;
-        guest.port = config.fediversity.internal.garage.rpc.port;
-      }
-      {
-        from = "host";
-        host.port = config.fediversity.internal.garage.web.port;
-        guest.port = config.fediversity.internal.garage.web.port;
-      }
-    ];
+    # virtualisation.diskSize = 2048;
+    # virtualisation.forwardPorts = [
+    #   {
+    #     from = "host";
+    #     host.port = config.fediversity.internal.garage.rpc.port;
+    #     guest.port = config.fediversity.internal.garage.rpc.port;
+    #   }
+    #   {
+    #     from = "host";
+    #     host.port = config.fediversity.internal.garage.web.port;
+    #     guest.port = config.fediversity.internal.garage.web.port;
+    #   }
+    # ];
 
     environment.systemPackages = [ pkgs.minio-client pkgs.awscli ];