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";