From 40743ee0ac773ef676ff503203aaee977058f87c Mon Sep 17 00:00:00 2001 From: 514fpv Date: Tue, 19 Mar 2024 08:56:21 +0800 Subject: [PATCH] home(auth): add ssh ports --- home/auth/home.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/home/auth/home.nix b/home/auth/home.nix index 890628c3..4b2cfeba 100644 --- a/home/auth/home.nix +++ b/home/auth/home.nix @@ -22,4 +22,12 @@ }; }; }; + + programs.ssh = { + enable = true; + matchBlocks = { + "edge.514fpv.io".port = 8086; + "sf.514fpv.io".port = 8087; + }; + }; }