diff options
author | Griffin Smith <grfn@gws.fyi> | 2020-10-27T20·52-0400 |
---|---|---|
committer | glittershark <grfn@gws.fyi> | 2020-10-27T20·55+0000 |
commit | 98ed3c56db917da82f7c450c0256024f52235098 (patch) | |
tree | fdc44967bb291e5efd877c1847af4218d4356052 /users | |
parent | a14f44b4fdcc9dd62a96aa3f43b6c628f4673c24 (diff) |
feat(gs/home): Add ssh host alias for cerberus r/1864
My old macbook, which I still use sometimes Change-Id: I3ad080083b67b6cfab4cd31a4dce0a80a7227bd5 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2065 Reviewed-by: glittershark <grfn@gws.fyi> Tested-by: BuildkiteCI
Diffstat (limited to 'users')
-rw-r--r-- | users/glittershark/system/home/modules/common.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/users/glittershark/system/home/modules/common.nix b/users/glittershark/system/home/modules/common.nix index 45ede2fad8a5..14ac4a8b0e7c 100644 --- a/users/glittershark/system/home/modules/common.nix +++ b/users/glittershark/system/home/modules/common.nix @@ -64,6 +64,13 @@ user = "griffin"; }; + "cerberus" = { + host = "cerberus"; + hostname = "172.16.0.3"; + forwardAgent = true; + user = "griffin"; + }; + "mugwump" = { host = "mugwump"; hostname = "172.16.0.5"; |