From acc3946d777c7d0869bc3bbc04e3f8d24f12817c Mon Sep 17 00:00:00 2001 From: Jack Mechem Date: Fri, 1 May 2026 04:06:06 -0700 Subject: [PATCH] Fix ssh regular ed25519 key --- hosts/dellserv/configuration.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hosts/dellserv/configuration.nix b/hosts/dellserv/configuration.nix index 7af8a29..f28f549 100644 --- a/hosts/dellserv/configuration.nix +++ b/hosts/dellserv/configuration.nix @@ -61,6 +61,10 @@ PasswordAuthentication = false; KbdInteractiveAuthentication = false; }; + services.openssh.extraConfig = '' + Match User forgejo + PubkeyAcceptedAlgorithms +ssh-ed25519 + ''; ## services.nginx = { ## enable = true;