From b7c38d133ed546346fd732f1d6eaa5bd1a4cdc59 Mon Sep 17 00:00:00 2001 From: Martin Berg Alstad Date: Thu, 15 May 2025 21:18:06 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20[shared]=20Added=20thinkpad=20to?= =?UTF-8?q?=20ssh=20config?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- shared/modules/security/ssh.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/shared/modules/security/ssh.nix b/shared/modules/security/ssh.nix index 5f016d8..87ffee8 100644 --- a/shared/modules/security/ssh.nix +++ b/shared/modules/security/ssh.nix @@ -9,5 +9,9 @@ extraHostNames = [ "desktop.${domain}" ]; publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMSzXyTuQyTrWsfORQbvgrqt/33+hfSUDXeMg6D1T2wz"; }; + thinkpad = { + extraHostNames = [ "thinkpad.${domain}" ]; + publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILNlHKE/BD8kKfhJD7GBk1A3whZf3gTjk9VEgGAj3qsH"; + }; }; }