summaryrefslogtreecommitdiff
path: root/users/ryan
diff options
context:
space:
mode:
authorRyan Schanzenbacher <ryan@rschanz.org>2026-06-16 22:03:59 -0400
committerRyan Schanzenbacher <ryan@rschanz.org>2026-06-16 22:03:59 -0400
commitfa4e176191c8bebe7f1e45b4b4512c0bd10244e1 (patch)
treebbb112c4347613d17699c31b981ac62da4af2460 /users/ryan
parente82c5b326afdc91fb30f5d83136ce94a64efc66f (diff)
fix name of tailscale, add ssh config
Diffstat (limited to 'users/ryan')
-rw-r--r--users/ryan/home.nix22
1 files changed, 22 insertions, 0 deletions
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;