diff options
author | William Carroll <wpcarro@gmail.com> | 2020-02-18T23·29+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-02-19T15·01+0000 |
commit | 00e3526d9a41ca2390863b5666c6faebc9b707c3 (patch) | |
tree | da3934071e9e500b1fa9023d93942e77e7a77c72 /configs | |
parent | ca6bd29ed8eaca616a1bc8ffceb68f00544eab36 (diff) |
Support SSH config for acer machine
I'd like to setup a NixOS machine that runs in my flat to host my blog and other projects. For now it's a slow Acer running Manjaro Linux. I'm hoping that I can install NixOS on it remotely over SSH. But first! SSH access... I setup port forwarding from my router to this machine for: - HTTP - HTTPS - SSH
Diffstat (limited to 'configs')
-rw-r--r-- | configs/shared/.ssh/config | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/configs/shared/.ssh/config b/configs/shared/.ssh/config index 7519c00c0f65..b5b220f852b6 100644 --- a/configs/shared/.ssh/config +++ b/configs/shared/.ssh/config @@ -10,6 +10,11 @@ Host gcp User wpcarro Hostname 35.246.93.73 +# Laptop running in my flat +Host flattop + User wpcarro + Hostname 84.92.33.141 + # Raspberry Pi home computer # router_public_ip: 150.143.40.77 # private_ip: 192.168.1.67 |