From: Skullheadx Date: Tue, 2 Jun 2026 01:20:04 +0000 (-0400) Subject: configure ssh X-Git-Url: http://git.skullheadx.com/projects.html?a=commitdiff_plain;h=4619bf51c1fc832a394b2bcecfcd96e1d8232bef;p=nixos.git configure ssh --- 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; };