From 9d9c7453758982228c3448737089371ad09e82af Mon Sep 17 00:00:00 2001 From: Marko Korhonen Date: Sat, 5 Oct 2024 16:19:44 +0300 Subject: [PATCH] Add authorized SSH key --- users/functionalhacker/configuration.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/users/functionalhacker/configuration.nix b/users/functionalhacker/configuration.nix index d2bae854..5c0bdb81 100644 --- a/users/functionalhacker/configuration.nix +++ b/users/functionalhacker/configuration.nix @@ -6,5 +6,8 @@ isNormalUser = true; extraGroups = [ "networkmanager" "wheel" ]; shell = pkgs.zsh; + openssh.authorizedKeys.keys = [ + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHLUrf0LpumX6XEkPW6Z105sgJMWWOllWy7sxB+lgdUw Marko YubiKey" + ]; }; }