From 08ae2764e0edad2e2b6de486d4fdb2ad1d15cf29 Mon Sep 17 00:00:00 2001 From: Lars Nolden Date: Thu, 25 Jun 2026 18:32:39 +0200 Subject: [PATCH] update authorized keys --- nix/hosts/common.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nix/hosts/common.nix b/nix/hosts/common.nix index 7a29e7d..ab38f30 100644 --- a/nix/hosts/common.nix +++ b/nix/hosts/common.nix @@ -13,7 +13,8 @@ isNormalUser = true; extraGroups = [ "wheel" ]; openssh.authorizedKeys.keys = [ - # TODO: paste the Gitea runner's deploy ed25519 pubkey here + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJuB+MbW/YuXYGZ/lm6dp+aHJ1YqfaEkiqgj/Z6+cdd0 me@larsnolden.com" # developer machines key + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIB9LFaFbro5jU9jG0ZNn66FO61gniKfi865jS6TnZ+SU deploy" # deployment nodes key ]; }; security.sudo.wheelNeedsPassword = false;