summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--hosts/RyanMac/configuration.nix2
-rw-r--r--users/ryan/home.nix22
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;