From df079a3f654eb0423d23e7ed577ffd54ec34ef12 Mon Sep 17 00:00:00 2001 From: Lucy von Overheidt Date: Tue, 9 Sep 2025 22:10:22 +0200 Subject: [PATCH] ssh --- modules/ssh.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/modules/ssh.nix b/modules/ssh.nix index 0ed15d0..ec358f8 100644 --- a/modules/ssh.nix +++ b/modules/ssh.nix @@ -1,7 +1,8 @@ -{ config -, pkgs -, lib -, ... +{ + config, + pkgs, + lib, + ... }: let @@ -11,7 +12,7 @@ let inherit hostname; user = "lucy"; # Use dynamically retrieved user identityFile = [ - "/nix/persist/etc/ssh/ssh_host_ed25519_key" + "/nix/persist/etc/ssh/id_ed25519" ]; port = 22; };