From d35d212949da265d9ccd6383ffe7d2c622c12c24 Mon Sep 17 00:00:00 2001 From: Nathan McCarty Date: Wed, 8 Jan 2025 23:16:50 -0500 Subject: [PATCH] Add crash ssh key --- nixos/modules/user.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nixos/modules/user.nix b/nixos/modules/user.nix index ac4fa39..168cb26 100644 --- a/nixos/modules/user.nix +++ b/nixos/modules/user.nix @@ -26,6 +26,9 @@ "wheel" ]; hashedPassword = "$6$ShBAPGwzKZuB7eEv$cbb3erUqtVGFo/Vux9UwT2NkbVG9VGCxJxPiZFYL0DIc3t4GpYxjkM0M7fFnh.6V8MoSKLM/TvOtzdWbYwI58."; + openssh.authorizedKeys.keys = [ + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEtE+KjKuHUj5bKKQBDKqhO5dpEQf8E8u1G6kRj7y6dI nathan@nixos" + ]; }; };