From 95de2cc67d21f60fcb9716da5d63fd97504e484c Mon Sep 17 00:00:00 2001 From: cswimr Date: Sat, 16 Nov 2024 22:26:15 -0500 Subject: [PATCH] add my own ssh key --- nixos/configuration.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 77caab5..30934ae 100755 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -82,6 +82,11 @@ isNormalUser = true; description = "Seaswimmer"; extraGroups = [ "networkmanager" "wheel" "docker" ]; + openssh = { + authorizedKeys.keys = [ + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILOka7plvb0hAwDq04mb+hs+a+P3XDhyYyvhw1L5tvlz cswimr@eclipse" + ]; + }; # packages = with pkgs; []; use home-manager instead! };