From 9b430742485641655279b279344da269e254aa86 Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Thu, 19 Mar 2026 10:29:55 +0100 Subject: [PATCH] Home: Add mars database port forward --- home/christoph/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/home/christoph/default.nix b/home/christoph/default.nix index 02b5806a..1b7571ef 100644 --- a/home/christoph/default.nix +++ b/home/christoph/default.nix @@ -922,10 +922,17 @@ in serverAliveInterval = 60; localForwards = [ { + # Resultbrowser bind.port = 22941; host.address = "127.0.0.1"; host.port = 22941; } + { + # Mysql + bind.port = 3306; + host.address = "127.0.0.1"; + host.port = 3306; + } ]; }; };