]> Skullheadx's Git Forge - nixos.git/commitdiff
configure ssh
authorSkullheadx <admonty1@protonmail.com>
Tue, 2 Jun 2026 01:20:04 +0000 (21:20 -0400)
committerSkullheadx <admonty1@protonmail.com>
Tue, 2 Jun 2026 01:20:06 +0000 (21:20 -0400)
hosts/nepsis/configuration.nix

index 8404fe65bfad42a36dcf97ac3e6b11dc9b446516..bfff0bdf4cc4525fa8b33b1a205b1c79b8d11da3 100644 (file)
     };
   };
 
+  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
   };
 
   # Services
-  services.openssh.enable = true;
+  services.openssh = {
+    enable = true;
+  };
   services.rsync = {
     enable = true;
   };