From 4619bf51c1fc832a394b2bcecfcd96e1d8232bef Mon Sep 17 00:00:00 2001 From: Skullheadx Date: Mon, 1 Jun 2026 21:20:04 -0400 Subject: [PATCH] configure ssh --- hosts/nepsis/configuration.nix | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/hosts/nepsis/configuration.nix b/hosts/nepsis/configuration.nix index 8404fe6..bfff0bd 100644 --- a/hosts/nepsis/configuration.nix +++ b/hosts/nepsis/configuration.nix @@ -63,6 +63,20 @@ }; }; + programs.ssh = { + extraConfig = '' + Host git-vps + HostName git.skullheadx.com + Port 2222 + User git + Host git.skullheadx.com + HostName localhost + Port 2223 + User git + ProxyJump git-vps + ''; + }; + programs.steam = { enable = true; remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play @@ -91,7 +105,9 @@ }; # Services - services.openssh.enable = true; + services.openssh = { + enable = true; + }; services.rsync = { enable = true; }; -- 2.54.0