From 1f89394e405788e2d2c5c662e54013cd6c37e717 Mon Sep 17 00:00:00 2001 From: Miguel Palhas Date: Wed, 1 Jul 2026 18:42:17 +0100 Subject: [PATCH] ssh --- flake.lock | 6 +++--- home/common/programs/dev.nix | 2 ++ home/common/programs/ssh.nix | 11 +++++------ 3 files changed, 10 insertions(+), 9 deletions(-) diff --git a/flake.lock b/flake.lock index da81ede..f48e090 100644 --- a/flake.lock +++ b/flake.lock @@ -711,11 +711,11 @@ "nvchad-starter": { "flake": false, "locked": { - "lastModified": 1781540169, - "narHash": "sha256-WInj893sq8gTtIvSu0EY/5/3EiYpy2SPcNetjpKO68o=", + "lastModified": 1782738765, + "narHash": "sha256-/jxBHJ74FYVYm8JGO3ay2J3B2/Rf3/KvroivtJFFJRM=", "owner": "naps62", "repo": "nvchad-starter", - "rev": "35370b831c42d0d4b2ca7291df6f4e53e2e48573", + "rev": "020bf7716ea1b7d233cbdaef63c8585791f896b7", "type": "github" }, "original": { diff --git a/home/common/programs/dev.nix b/home/common/programs/dev.nix index cb701ab..758d0e8 100644 --- a/home/common/programs/dev.nix +++ b/home/common/programs/dev.nix @@ -24,6 +24,8 @@ home.packages = with pkgs; [ imagemagick doctl + awscli2 + terraform inotify-tools devenv bruno diff --git a/home/common/programs/ssh.nix b/home/common/programs/ssh.nix index 1756a90..bd7cf08 100644 --- a/home/common/programs/ssh.nix +++ b/home/common/programs/ssh.nix @@ -1,5 +1,4 @@ -_: -{ +_: { programs.ssh = { enable = true; @@ -47,14 +46,14 @@ _: # Auto-forward localhost:47100/47101 to the same ports on yolo. LocalForward = [ { - bind.port = 47100; + bind.port = 41700; host.address = "localhost"; - host.port = 47100; + host.port = 41700; } { - bind.port = 47101; + bind.port = 41701; host.address = "localhost"; - host.port = 47101; + host.port = 41701; } ]; };