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; };