From 9be823208309145f137f1052ae2582c570f1647c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20=E2=80=9CNiols=E2=80=9D=20Jeannerod?= 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 84af662..2c3e006 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 ];