diff options
| author | Ryan Schanzenbacher <ryan@rschanz.org> | 2026-06-16 22:03:59 -0400 |
|---|---|---|
| committer | Ryan Schanzenbacher <ryan@rschanz.org> | 2026-06-16 22:03:59 -0400 |
| commit | fa4e176191c8bebe7f1e45b4b4512c0bd10244e1 (patch) | |
| tree | bbb112c4347613d17699c31b981ac62da4af2460 | |
| parent | e82c5b326afdc91fb30f5d83136ce94a64efc66f (diff) | |
fix name of tailscale, add ssh config
| -rw-r--r-- | hosts/RyanMac/configuration.nix | 2 | ||||
| -rw-r--r-- | users/ryan/home.nix | 22 |
2 files changed, 23 insertions, 1 deletions
diff --git a/hosts/RyanMac/configuration.nix b/hosts/RyanMac/configuration.nix index 7b4286b..5996ab2 100644 --- a/hosts/RyanMac/configuration.nix +++ b/hosts/RyanMac/configuration.nix | |||
| @@ -78,7 +78,7 @@ in { | |||
| 78 | "utm" | 78 | "utm" |
| 79 | "ghostty" | 79 | "ghostty" |
| 80 | "zen" | 80 | "zen" |
| 81 | "tailscale" | 81 | "tailscale-app" |
| 82 | "netbird-ui" | 82 | "netbird-ui" |
| 83 | ]; | 83 | ]; |
| 84 | }; | 84 | }; |
diff --git a/users/ryan/home.nix b/users/ryan/home.nix index 1ed3098..5e97ff5 100644 --- a/users/ryan/home.nix +++ b/users/ryan/home.nix | |||
| @@ -66,6 +66,28 @@ | |||
| 66 | }; | 66 | }; |
| 67 | }; | 67 | }; |
| 68 | 68 | ||
| 69 | programs.ssh = { | ||
| 70 | enable = true; | ||
| 71 | package = null; # installed by default | ||
| 72 | |||
| 73 | enableDefaultConfig = false; | ||
| 74 | |||
| 75 | settings = { | ||
| 76 | "rocApex" = { | ||
| 77 | hostname = "129.158.232.104"; | ||
| 78 | user = "root"; | ||
| 79 | }; | ||
| 80 | "hetzner" = { | ||
| 81 | hostname = "5.161.207.21"; | ||
| 82 | user = "root"; | ||
| 83 | }; | ||
| 84 | "rncorepub" = { | ||
| 85 | hostname = "5.161.89.186"; | ||
| 86 | user = "root"; | ||
| 87 | }; | ||
| 88 | }; | ||
| 89 | }; | ||
| 90 | |||
| 69 | services.gpg-agent = { | 91 | services.gpg-agent = { |
| 70 | enable = true; | 92 | enable = true; |
| 71 | enableSshSupport = true; | 93 | enableSshSupport = true; |
