From 24f43872ce9f2af39408153ce6030292b00f16d9 Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Wed, 6 May 2026 19:30:05 -0500 Subject: [PATCH] hermes comments --- modules/services/ssh.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/modules/services/ssh.nix b/modules/services/ssh.nix index 630dff2..2eb5220 100644 --- a/modules/services/ssh.nix +++ b/modules/services/ssh.nix @@ -53,7 +53,7 @@ in }; programs.ssh.knownHosts = lib.mkIf cfg.certificates.enable { - "192.168.1.*" = { + "192.168.1.*" = { certAuthority = true; publicKey = sshHostCAPubKey; }; @@ -188,6 +188,11 @@ in "hermes" = { hostname = "192.168.1.150"; user = "root"; + # Enabling this breaks the ability of Zed to install its remote stuff + # extraOptions = { + # RequestTTY = "force"; + # RemoteCommand = "/root/.nix-profile/bin/jsl-zsh"; + # }; }; "panoptes" = { hostname = "192.168.1.107";