From 60a73a81be0706de989a3ef0ade20b35a9592353 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Sun, 16 Mar 2025 08:56:18 +0100 Subject: [PATCH] ssh: add travel laptop public key --- configs/ssh.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/configs/ssh.nix b/configs/ssh.nix index a7890d0..a5e87a0 100644 --- a/configs/ssh.nix +++ b/configs/ssh.nix @@ -2,7 +2,9 @@ inherit (import ../lib) sshPort kieran; externalNetwork = import ../lib/external-network.nix; in { - users.users.me.openssh.authorizedKeys.keys = kieran.sshKeys; + users.users.me.openssh.authorizedKeys.keys = kieran.sshKeys ++ [ + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPoiRIn1dBUtpApcUyGbZKN+m5KBSgKIDQjdnQ8vU0xU kfm@kibbeh" # travel laptop + ]; programs.ssh.startAgent = true;