From f073128035e55b50af84d2083cb874baf7467294 Mon Sep 17 00:00:00 2001 From: Rory& Date: Sun, 24 May 2026 01:34:38 +0200 Subject: [PATCH] test VM: expose pion port --- nix/testVm/vm.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/nix/testVm/vm.nix b/nix/testVm/vm.nix index 1138e8b72..c07e4f926 100644 --- a/nix/testVm/vm.nix +++ b/nix/testVm/vm.nix @@ -27,6 +27,12 @@ host.port = 8080; guest.port = 80; } + { + from="host"; + host.port = 6000; + guest.port = 6000; + proto = "udp"; + } ]; networking.useDHCP = lib.mkForce true;