summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSkullheadx <admonty1@protonmail.com>2026-06-01 21:20:04 -0400
committerSkullheadx <admonty1@protonmail.com>2026-06-01 21:20:06 -0400
commit4619bf51c1fc832a394b2bcecfcd96e1d8232bef (patch)
tree0f0b85c16f4878ab64a9247838adcbbb10dc810c
parentssh + https protocols for git (diff)
downloadnixos-4619bf51c1fc832a394b2bcecfcd96e1d8232bef.tar.gz
nixos-4619bf51c1fc832a394b2bcecfcd96e1d8232bef.tar.bz2
nixos-4619bf51c1fc832a394b2bcecfcd96e1d8232bef.zip
configure ssh
-rw-r--r--hosts/nepsis/configuration.nix18
1 files changed, 17 insertions, 1 deletions
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;
};