From 06a9702782b5e1a4ab78bad8a75e1cb9f737fc7d Mon Sep 17 00:00:00 2001 From: Goeran Heinemann <{ID}+{username}@users.noreply.github.com> Date: Fri, 24 Jan 2025 16:59:15 +0100 Subject: [PATCH] install ssh-public key --- configuration.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configuration.nix b/configuration.nix index cb4d232..901c3fe 100644 --- a/configuration.nix +++ b/configuration.nix @@ -45,6 +45,9 @@ users.users.administration = { isNormalUser = true; extraGroups = [ "wheel" "docker" ]; # Enable ‘sudo’ for the user. + openssh.authorizedKeys.keys = [ + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINABEf0jBjtDdezDDtvl1v27l0DbHP2XUgMARTZXC+MR goeranh@node5" + ]; packages = with pkgs; [ ]; };