From 56cd549e3dd399f12b790820b15e22b2332e11c2 Mon Sep 17 00:00:00 2001 From: Michael Walker Date: Wed, 11 Dec 2024 12:39:35 +0000 Subject: [PATCH] [carcosa] Add yuggoth ssh key to enable remote builds --- hosts/carcosa/configuration.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hosts/carcosa/configuration.nix b/hosts/carcosa/configuration.nix index 4d0775a0..bc83b5e5 100644 --- a/hosts/carcosa/configuration.nix +++ b/hosts/carcosa/configuration.nix @@ -345,6 +345,8 @@ in isSystemUser = true; shell = pkgs.bashInteractive; group = "nogroup"; + openssh.authorizedKeys.keys = + [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHFzMpx7QNSAb5tCbkzMRIG62PvBZysflwwCKchFDHtY nix@yuggoth" ]; }; nix.settings.trusted-users = [ config.users.extraUsers.nix-remote-builder.name ];