diff options
Diffstat (limited to 'hosts/nepsis/configuration.nix')
| -rw-r--r-- | hosts/nepsis/configuration.nix | 18 |
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; }; |
